当前位置: 代码迷 >> J2EE >> float 型 1.58045517E9 转换成 1580455200,该怎么解决
  详细解决方案

float 型 1.58045517E9 转换成 1580455200,该怎么解决

热度:489   发布时间:2016-04-22 01:15:10.0
float 型 1.58045517E9 转换成 1580455200
float 型 1.58045517E9 
转换成 
1580455200

帮忙看看呢,谢谢了。

------解决方案--------------------
float f = (float) 1.58045517e9;
int a = Math.round(f / 10) * 10;
System.out.println(a);
  相关解决方案