double salary1 = 10000.0;
double salary2 = 10000.12345;
double salary3 = 10000.1289;
int salary4 = 10000;
string salary5 = "10000";
string salary6 = "10000.12345";
string salary7 = "10000.1289"
convert.todouble(salary1).tostring("0.00");//保留小數點後兩位,結果為10000.00
convert.todouble(salary2).tostring("0.00");//保留小數點後兩位,結果為10000.12
convert.todouble(salary3).tostring("0.00");//保留小數點後兩位,結果為10000.13
convert.todouble(salary4).tostring("0.00");//保留小數點後兩位,結果為10000.00
convert.todouble(salary5).tostring("0.00");//保留小數點後兩位,結果為10000.00
convert.todouble(salary6).tostring("0.00");//保留小數點後兩位,結果為10000.12
convert.todouble(salary7).tostring("0.00");//保留小數點後兩位,結果為10000.13
SAP小數點四捨五入處理
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 fi...
js 小數四捨五入保留位數
在寫js的時候,頁面顯示太多小數要做四捨五入保留4位小數,因為我自己老是忘,所以整理了一下記下來。tofixed 方法可把 number 四捨五入為指定小數字數的數字。必須要是number,有時候需 parsefloat number 來轉換一下 numberobject.tofixed num 引...
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 ...