博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
learning java Math类
阅读量:5010 次
发布时间:2019-06-12

本文共 715 字,大约阅读时间需要 2 分钟。

output:
//取整,返回小于目标数的最大整数 System.out.println(Math.floor(-1.2)); // 取整,返回在于目标数的最大整数 System.out.println(Math.ceil(1.2)); // 四舍五入取整 System.out.println(Math.round(1.6)); System.out.println(Math.round(1.5)); System.out.println(Math.round(1.4)); System.out.println(Math.IEEEremainder(5,3)); System.out.println(Math.IEEEremainder(5,2)); //计算平方 System.out.println(Math.pow(3,4)); //计得平方根 System.out.println(Math.sqrt(4)); // 计算立方根 System.out.println(Math.cbrt(27)); System.out.println(Math.copySign(1.2,-1.0)); System.out.println(Math.nextAfter(1.4,1.0)); System.out.println(Math.nextUp(1.3));
 
-2.02.0221-1.01.081.02.03.0-1.21.39999999999999971.3000000000000003

 

转载于:https://www.cnblogs.com/lianghong881018/p/11245133.html

你可能感兴趣的文章
芯片TPS70925
查看>>
linux shell 发送email 附件
查看>>
人群密度估计 CrowdCount
查看>>
JSON.parse()和JSON.stringify()
查看>>
.net 常用正则表达式
查看>>
Java泛型中的标记符含义:
查看>>
初遇GitHub
查看>>
[C# 网络编程系列]专题八:P2P编程
查看>>
Jsの练习-数组常用方法 -forEach()
查看>>
动态绑定treeview的方法
查看>>
jvm参数
查看>>
3-1 案例环境初始化
查看>>
读《构建之法》第四章和十七章有感
查看>>
01背包
查看>>
开发一个12306网站要多少钱?技术分析12306合格还是不合格
查看>>
Selenium 入门到精通系列:六
查看>>
HTTP与TCP的区别和联系
查看>>
android 实现2张图片层叠效果
查看>>
我个人所有的独立博客wordpress都被挂马
查看>>
html5——动画案例(时钟)
查看>>