【蓝桥杯Java_C组·从零开始卷】第六节(一)、Java常用数学函数

举报
红目香薰 发表于 2022/01/23 18:04:28 2022/01/23
【摘要】 ​ 目录1.Math.sqrt() : 计算平方根2.Math.cbrt() : 计算立方根3.Math.pow(a, b) : 计算a的b次方4.Math.max( , ) :计算最大值5.Math.min( , ) : 计算最小值6.Math.abs() : 取绝对值7.Math.ceil(): 向上取整8.Math.floor() : 向下取整9.Math.rint(): 四舍五入,返...

 目录

1.Math.sqrt() : 计算平方根

2.Math.cbrt() : 计算立方根

3.Math.pow(a, b) : 计算a的b次方

4.Math.max( , ) :计算最大值

5.Math.min( , ) : 计算最小值

6.Math.abs() : 取绝对值

7.Math.ceil(): 向上取整

8.Math.floor() : 向下取整

9.Math.rint(): 四舍五入,返回double值。注意.5的时候会取偶数

10.Math.round(): 四舍五入,float时返回int值,double时返回long值

11.Math.random(): 取得一个[0, 1)范围内的随机数

12.π


1.Math.sqrt() : 计算平方根

System.out.println(Math.sqrt(25)); // 5.0

2.Math.cbrt() : 计算立方根

System.out.println(Math.cbrt(27)); // 3.0 

3.Math.pow(a, b) : 计算a的b次方

System.out.println(Math.pow(3, 2)); // 9.0

4.Math.max( , ) :计算最大值

System.out.println(Math.max(2.3, 4.5));// 4.5

5.Math.min( , ) : 计算最小值

System.out.println(Math.min(2.3, 4.5));// 2.3

6.Math.abs() : 取绝对值

System.out.println(Math.abs(-10.4)); // 10.4
System.out.println(Math.abs(10.1)); // 10.1

7.Math.ceil(): 向上取整

System.out.println(Math.ceil(-10.1)); // -10.0
System.out.println(Math.ceil(10.7)); // 11.0
System.out.println(Math.ceil(-0.7)); // -0.0
System.out.println(Math.ceil(0.0)); // 0.0
System.out.println(Math.ceil(-0.0)); // -0.0
System.out.println(Math.ceil(-1.7)); // -1.0

8.Math.floor() : 向下取整

System.out.println(Math.floor(-10.1)); // -11.0
System.out.println(Math.floor(10.7)); // 10.0
System.out.println(Math.floor(-0.7)); // -1.0
System.out.println(Math.floor(0.0)); // 0.0
System.out.println(Math.floor(-0.0)); // -0.0

9.Math.rint(): 四舍五入,返回double值。注意.5的时候会取偶数

System.out.println(Math.rint(10.1)); // 10.0
System.out.println(Math.rint(10.7)); // 11.0
System.out.println(Math.rint(11.5)); // 12.0
System.out.println(Math.rint(10.5)); // 10.0
System.out.println(Math.rint(10.51)); // 11.0
System.out.println(Math.rint(-10.5)); // -10.0
System.out.println(Math.rint(-11.5)); // -12.0
System.out.println(Math.rint(-10.51)); // -11.0
System.out.println(Math.rint(-10.6)); // -11.0
System.out.println(Math.rint(-10.2)); // -10.0

10.Math.round(): 四舍五入,float时返回int值,double时返回long值

System.out.println(Math.round(10.1)); // 10
System.out.println(Math.round(10.5)); // 11
System.out.println(Math.round(-10.5)); // -10
System.out.println(Math.round(-10.51)); // -11
System.out.println(Math.round(-10.6)); // -11
System.out.println(Math.round(-10.2)); // -10

11.Math.random(): 取得一个[0, 1)范围内的随机数

System.out.println(Math.random()); // [0, 1)的double类型的数
System.out.println(Math.random() * 2);//[0, 2)的double类型的数
System.out.println(Math.random() * 2 + 1);// [1, 3)的double类型的数

12.π

System.out.println(Math.PI);//3.141592653589793


【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。