SAP小數點四捨五入處理

2021-06-03 18:02:37 字數 529 閱讀 3772

data : dat type p decimals 9  value '12.5445' ,

dat1 type p decimals 2 .

*       move dat to dat1.

call function 'hr_nz_rounding_decimals'

exporting

value_in                       = dat                      " input field with decimals

conv_dec                       = 2                         " i    number of desired decimals for conversion

importing

value_out                      = dat1.                  " output field with rounded decimals

write : dat1.

java中小數點的四捨五入處理

小數點的四捨五入 bigdecimal b new bigdecimal doublevalue double endvalue b.setscale 2,bigdecimal.round half up doublevalue 其中doublevalue是你需要轉換的double型別的變數 2 是...

C 中小數點四捨五入的方法

下面介紹6種asp.net小數點四捨五入的方法 1.只要求保留n位不四捨5入 float f 0.55555f int i int f 100 f float i 1.0 100 2.保留n位,四捨五入 decimal d decimal.round decimal.parse 0.55555 2 ...

C 小數點後保留位數並四捨五入

double salary1 10000.0 double salary2 10000.12345 double salary3 10000.1289 int salary4 10000 string salary5 10000 string salary6 10000.12345 string s...