码迷,mamicode.com
首页 > 编程语言 > 详细

java Math类

时间:2019-07-08 09:24:06      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:整数   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之间的随机数

java Math类

标签:整数   int   随机   rand   次方   sqrt   java   math类   round   

原文地址:https://blog.51cto.com/14437184/2417911

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!