C 基礎 百分數

2021-10-02 17:45:15 字數 1104 閱讀 1884

double a=50;

double b=100;

沒有小數部分

label1.text = (a   /   (a+b)).tostring("0%")   

兩位小數

label2.text =   (a   /   (a+b)).tostring("p")   

tostring("0.00%"); tostring("p3"); 可以設定精度

方法一:能得到你想要的小數點後位數

double percent=convert.todouble(2)/convert.todouble(34);

string result=string.format("",percent);//得到5.88%

string result=string.format("",percent);//得到5.8824%

方法二:比較理想,能得到你想要的小數點後位數

double percent=convert.todouble(2)/convert.todouble(34);

string result=percent.tostring("0%");//得到6%

string result=percent.tostring("0.000%");//得到5.882%

方法三:tostring("p")中的引數p預設保留小數點後兩位數,這個也能得到你理想的數字

double percent=convert.todouble(2)/convert.todouble(34);

string result=percent.tostring("p");//可以到的5.88%

string result =percent.tostring("p2");//得到5.88%

string result=percent.tostring("p3");//得到5.882%

方法四:math.round(num1,num2) ,引數一(num1)是用於四捨五入的數,引數二(num2)是表示保留小數點後數字的位數

double percent=math.round(2*1.00/34*100.0,4);

string result=percent.tostring()+"%";//得到5.8824%

php 百分數 php 百分數如何轉小數

php百分數轉小數的方法 首先建立乙個php示例檔案 然後定義乙個百分數 接著通過 float a 100 方法將百分數轉為小數 最後通過echo輸出轉換後的小數即可。php百分數轉小數,php 小數轉換百分數函式 阿星小棧 php百分號轉小數 a 20.544545 echo float a 10...

python百分數小數

百分比轉換位小數 coding utf 8 s 20 預設要轉換的百分比是字串 aa float s.strip 去掉s 字串中的 bb aa 100.0 執行環境是python2.7 其中python2.x 與 python 3x中的除法是有區別 print bb 輸出結果是 0.2 小數轉換位百...

百分數轉bigd 小數 分數 百分數英語表示方法

小數 分數 百分數英語表示方法 1.小數表示法 1 小數點左邊的數通常按基數詞讀,若為三位以上的數,也可按編碼式讀法讀出,即將數字單個讀出 小數點右邊的數通常按編碼式讀法單個讀出。如 6.86 讀作 six point eight six 14.15 讀作 fourteen point one fi...