C 中保留浮點型小數字數問題

2021-09-24 23:19:17 字數 1194 閱讀 9081

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); 

3.保留n位四捨五入 

math.round(0.55555,2) 

4,保留n位四捨五入 

double   dbdata   =   0.55555; 

string   str1   =     dbdata.tostring( "f2 ");//fn   保留n位,四捨五入 

5.保留n位四捨五入 

string   result   =   string.format( " ",   0.55555);//2位 

string   result   =   string.format( " ",   0.55555);//3位 

6. 保留n位四捨五入 

double   s=0.55555; 

result=s.tostring( "#0.00 ");//點後面幾個0就保留幾位

double dvalue = 95.12345;

int ivalue = 10000;

string strvalue = "95.12345";

string result = "";

result = convert.todouble(dvalue).tostring("0.00");//保留小數點後兩位,結果為95.12

result = convert.todouble(ivalue).tostring("0.00"); 

result = convert.todouble(strvalue).tostring("0.00");

result = convert.todouble(dvalue).tostring("p");//得到小數點後2位的百分比,自動 加上%號;

result = convert.todouble(strvalue).tostring("f4");//保留小數點後4位;  35

//要注意的一點是 convert.todouble一定要是這種雙精度的,不然會報錯。

JS中保留小數字數

一 1.2.tofixed 2 浮點數進行四捨五入設定指定小數字的數值 二 2.tofixed 2 整數嘗試,但是在js中會被認為是物件名,以至於無法使用 三 1.2 tofixed 2 由於tofixed方法是針對number型別的,所以string型別的即使能夠轉換成數字,也不能使用這個方法 四...

總結C 保留小數字數

本文向大家介紹c 保留小數字,可能好多人還不了解c 保留小數字,沒有關係,看完本文你肯定有不少收穫,希望本文能教會你更多東西。1.簡單的例子 system.globalization.numberformatinfo provider new system.globalization.numberf...

numpy保留小數字數

import numpy as np n 2data numpy.around a,n 保留2位小數,n為3,則保留3位小數。預設保留整數,計算方法是四捨五入。這裡是一些例子 import numpy as np np.around 0.37,1.64 array 0.2.np.around 0.3...