2022
02-26
02-26
Java Math.round函数详解
1.代码如下:publicclassTestMathRound{publicstaticvoidmain(String[]args){System.out.println("小数点后第一位=5");System.out.println("正数:Math.round(11.5)="+Math.round(11.5));//12System.out.println("负数:Math.round(-11.5)="+Math.round(-11.5));//-11System.out.println();System.out.println("小数点后第一位<5");System.out.println("正数:Ma...
继续阅读 >