int a,b,-c; float w,n
1、Math.sqrt(a*b); 此方法用于平方根
2、Math.round(w); 对浮点数进行四舍五入操作
3、Math.random(); 获取0~1之间的随机数
4、Math.pow(a); 平方数
5、Math.max(a,b); 两数中的最大值
6、Math.min(a,b); 两数中的最小值
7、Math.abs(-c); 取绝对值
2023-10-18 12:11:04
int a,b,-c; float w,n
1、Math.sqrt(a*b); 此方法用于平方根
2、Math.round(w); 对浮点数进行四舍五入操作
3、Math.random(); 获取0~1之间的随机数
4、Math.pow(a); 平方数
5、Math.max(a,b); 两数中的最大值
6、Math.min(a,b); 两数中的最小值
7、Math.abs(-c); 取绝对值