当前位置: 技术问答>java相关
我想问一下:如何限制float型数据的精确度?
来源: 互联网 发布时间:2015-02-07
本文导语: 比如说: float s=0.12345 我只想限制他显示小数点后两位,即:s=0.12 请问我怎样才能实现呢?谢谢了! | float s=0.12345f; s=Math.round(s*100)/100;//四舍五入 s=(float)Math.ceil((double)s*100)/100;//取尾 ...
比如说:
float s=0.12345
我只想限制他显示小数点后两位,即:s=0.12
请问我怎样才能实现呢?谢谢了!
float s=0.12345
我只想限制他显示小数点后两位,即:s=0.12
请问我怎样才能实现呢?谢谢了!
|
float s=0.12345f;
s=Math.round(s*100)/100;//四舍五入
s=(float)Math.ceil((double)s*100)/100;//取尾
s=Math.round(s*100)/100;//四舍五入
s=(float)Math.ceil((double)s*100)/100;//取尾