C Double保留小數點後面位數

2021-06-17 20:22:19 字數 713 閱讀 4144

double test1 = 1000.0;

double test2 = 1000.12345;

double test3 = 1000.1289;

int test4 = 1000;

string test5 = "1000";

string test6 = "1000.12345";

string test7 = "1000.1289"

convert.todouble(test1).tostring("0.00");//保留小數點後兩位,結果為1000.00

convert.todouble(test2).tostring("0.00");//保留小數點後兩位,結果為1000.12

convert.todouble(test3).tostring("0.00");//保留小數點後兩位,結果為1000.13

convert.todouble(test4).tostring("0.00");//保留小數點後兩位,結果為1000.00

convert.todouble(test5).tostring("0.00");//保留小數點後兩位,結果為1000.00

convert.todouble(test6).tostring("0.00");//保留小數點後兩位,結果為1000.12

convert.todouble(test7).tostring("0.00");//保留小數點後兩位,結果為1000.13  

C Double保留小數點後面位數

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

C 小數點保留倆位小數

今天在做一些資料運算的時候,發現有一些資料是小數點後面無數個,看著我都蒙。我想你們也遇到過吧,不多說,直接上 1 math.round 0.333333,2 四捨五入的國際標準2 double dbdata 0.335333 string str1 string.format dbdata 預設為保...

C Double toString保留小數點方法

有時候double型資料需要tostring 但又想保留小數,當值為整數,比如3.00時tostring後會變為 3 具體說明見下 1 stringstr0 i.tostring f 2 stringstr1 i.tostring f1 3 stringstr2 i.tostring f2 4 st...