java 中Math.round()的用法_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java 中Math.round()的用法

java 中Math.round()的用法

 2013/10/8 3:57:25  MNTMs  程序员俱乐部  我要评论(0)
  • 摘要:publicclassMathTest{publicstaticvoidmain(String[]args){System.out.println("小数点后第一位=5");System.out.println("正数:Math.round(11.5)="+Math.round(11.5));System.out.println("负数:Math.round(-11.5)="+Math.round(-11.5));System.out.println();System.out.println
  • 标签:用法 Java

public class MathTest {??
??? public static void main(String[] args) {??
??????? System.out.println("小数点后第一位=5");??
??????? System.out.println("正数:Math.round(11.5)=" + Math.round(11.5));??
??????? System.out.println("负数:Math.round(-11.5)=" + Math.round(-11.5));??
??????? System.out.println();??
??????? System.out.println("小数点后第一位<5");??
??????? System.out.println("正数:Math.round(11.46)=" + Math.round(11.46));??
??????? System.out.println("负数:Math.round(-11.46)=" + Math.round(-11.46));??
??????? System.out.println();??
??????? System.out.println("小数点后第一位>5");??
??????? System.out.println("正数:Math.round(11.68)=" + Math.round(11.68));??
??????? System.out.println("负数:Math.round(-11.68)=" + Math.round(-11.68));??
??? }??
}?
运行结果:?
小数点后第一位=5?
正数:Math.round(11.5)=12?
负数:Math.round(-11.5)=-11?
小数点后第一位<5?
正数:Math.round(11.46)=11?
负数:Math.round(-11.46)=-11?
小数点后第一位>5?
正数:Math.round(11.68)=12?
负数:Math.round(-11.68)=-12?
根据上面例子的运行结果,我们还可以按照如下方式总结,或许更加容易记忆:?
1、参数的小数点后第一位<5,运算结果为参数整数部分。?
2、参数的小数点后第一位>5,运算结果为参数整数部分绝对值+1,符号(即正负)不变。?
3、参数的小数点后第一位=5,正数运算结果为整数部分+1,负数运算结果为整数部分。

上一篇: winform模拟鼠标按键 下一篇: 没有下一篇了!
发表评论
用户名: 匿名