标签:整数 int 随机 rand 次方 sqrt java math类 round
System.out.println(Math.ceil(3.2)); //返回大于或等于给定数的整数
System.out.println(Math.floor(3.8)); //返回小于或等于给定数的整数
System.out.println(Math.round(3.5)); //四舍五入
System.out.println(Math.abs(-45)); //绝对值
System.out.println(Math.sqrt(64)); //算术平方根
System.out.println(Math.pow(5,2)); //返回5的2次方
System.out.println(Math.PI);
System.out.println(Math.E);
System.out.println(Math.random()); //返回0到1之间的随机数
标签:整数 int 随机 rand 次方 sqrt java math类 round
原文地址:https://blog.51cto.com/14437184/2417911