Math类中的其他常用数学函数方法如表所示
代码如下所示
//其他数学函数方法
public class Demo1 {
public static void main(String[] args) {
System.out.println("1.23与3.14之间最大值为:"+Math.max(1.23, 3.14));
System.out.println("3.33与4.44之间最小值为:"+Math.min(3.33, 4.44));
System.out.println("-5.14绝对值为:"+Math.abs(-5.14));
System.out.println("-5.14大一些浮点数为:"+Math.nextUp(-5.14));
System.out.println("-5.14小一些浮点数为:"+Math.nextDown(-5.14));
}
}
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>