黑马程序员技术交流社区
标题:
Math类的方法
[打印本页]
作者:
生活如此多娇
时间:
2016-12-3 22:11
标题:
Math类的方法
Math类的方法_2
Math.random() 返回 0.0-1.0 之间,来源也是Random类【了解】
Math.round(double d) 四舍五入【记忆】
/*
* static double round(double d)
* 获取参数的四舍五入,取整数
*/
public static void function_6(){
double d = Math.round(5.4195);
System.out.println(d);
}
/*
* static double random() 返回随机数 0.0-1.0之间
* 来源,也是Random类
*/
public static void function_5(){
for(int i = 0 ; i < 10 ;i++){
double d = Math.random();
System.out.println(d);
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2