java中常用到的math方法(Math.PI、Math.random()、Math.abs(double)、Math.floor(double)、Math.ceil(double)、Math.round(double))
- public class MathDemo {
- public static void main(String args[]){
- /**
- * abs求绝对值
- */
- System.out.println(Math.abs(-10.4)); //10.4
- System.out.println(Math.abs(10.1)); //10.1
- /**
- * 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
- /**
- * 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
- /**
- * max 两个中返回大的值,min和它相反,就不举例了
- */
- System.out.println(Math.max(-10.1, -10)); //-10.0
- System.out.println(Math.max(10.7, 10)); //10.7
- System.out.println(Math.max(0.0, -0.0)); //0.0
- /**
- * random 取得一个大于或者等于0.0小于不等于1.0的随机数
- */
- System.out.println(Math.random()); //0.08417657924317234
- System.out.println(Math.random()); //0.43527904004403717
- /**
- * 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
- /**
- * round 四舍五入,float时返回int值,double时返回long值
- */
- System.out.println(Math.round(10.1)); //10
- System.out.println(Math.round(10.7)); //11
- System.out.println(Math.round(10.5)); //11
- System.out.println(Math.round(10.51)); //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
- }
- }
- public class MathDemo {
- public static void main(String args[]){
- /**
- * abs求绝对值
- */
- System.out.println(Math.abs(-10.4)); //10.4
- System.out.println(Math.abs(10.1)); //10.1
- /**
- * 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
- /**
- * 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
- /**
- * max 两个中返回大的值,min和它相反,就不举例了
- */
- System.out.println(Math.max(-10.1, -10)); //-10.0
- System.out.println(Math.max(10.7, 10)); //10.7
- System.out.println(Math.max(0.0, -0.0)); //0.0
- /**
- * random 取得一个大于或者等于0.0小于不等于1.0的随机数
- */
- System.out.println(Math.random()); //0.08417657924317234
- System.out.println(Math.random()); //0.43527904004403717
- /**
- * 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
- /**
- * round 四舍五入,float时返回int值,double时返回long值
- */
- System.out.println(Math.round(10.1)); //10
- System.out.println(Math.round(10.7)); //11
- System.out.println(Math.round(10.5)); //11
- System.out.println(Math.round(10.51)); //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
- }
- }
java中常用到的math方法(Math.PI、Math.random()、Math.abs(double)、Math.floor(double)、Math.ceil(double)、Math.round(double))的更多相关文章
- java中常用的字符串的截取方法
java中常用的字符串的截取方法 1.length() 字符串的长度 例:char chars[]={'a','b'.'c'}; String s=new String(chars); int l ...
- java中常用的包、类、以及包中常用的类、方法、属性----sql和text\swing
java中常用的包.类.以及包中常用的类.方法.属性 常用的包 java.io.*; java.util.*; java.lang.*; java.sql.*; java.text.*; java.a ...
- 【Java】Java中常用的String方法
本文转载于:java中常用的String方法 1 length()字符串的长度 String a = "Hello Word!"; System.out.println(a.len ...
- Java高级特性 第2节 java中常用的实用类(1)
一.Java API Java API即Java应用程序编程接口,他是运行库的集合,预先定义了一些接口和类,程序员可以直接调用:此外也特指API的说明文档,也称帮助文档. Java中常用的包: jav ...
- Java 中的浮点数取精度方法
Java 中的浮点数取精度方法 一.内容 一般在Java代码中取一个double类型的浮点数的精度,四舍五入或者直接舍去等的方式,使用了4种方法,推荐使用第一种,我已经封装成工具类了. 二.代码实现 ...
- java 中常用的类
java 中常用的类 Math Math 类,包含用于执行基本数学运算的方法 常用API 取整 l static double abs(double a) 获取double 的绝对值 l sta ...
- java中常用的工具类(二)
下面继续分享java中常用的一些工具类,希望给大家带来帮助! 1.FtpUtil Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ...
- Java中常用的查找算法——顺序查找和二分查找
Java中常用的查找算法——顺序查找和二分查找 神话丿小王子的博客 一.顺序查找: a) 原理:顺序查找就是按顺序从头到尾依次往下查找,找到数据,则提前结束查找,找不到便一直查找下去,直到数据最后一位 ...
- java中常用的工具类(三)
继续分享java中常用的一些工具类.前两篇的文章中有人评论使用Apache 的lang包和IO包,或者Google的Guava库.后续的我会加上的!谢谢支持IT江湖 一.连接数据库的综合类 ...
- java中常用的工具类(一)
我们java程序员在开发项目的是常常会用到一些工具类.今天我汇总了一下java中常用的工具方法.大家可以在项目中使用.可以收藏!加入IT江湖官方群:383126909 我们一起成长 一.String工 ...
随机推荐
- How MySQL Opens and Closes Tables refuse connections 拒绝连接的原因 file descriptors
MySQL :: MySQL 5.7 Reference Manual :: 8.4.3.1 How MySQL Opens and Closes Tables https://dev.mysql.c ...
- poj 1821 Fence(单调队列优化DP)
poj 1821 Fence \(solution:\) 这道题因为每一个粉刷的人都有一块"必刷的木板",所以可以预见我们的最终方案里的粉刷匠一定是按其必刷的木板的顺序排列的.这就 ...
- NBUT 1222 English Game(trie树+DP)
[1222] English Game 时间限制: 1000 ms 内存限制: 131072 K 问题描写叙述 This English game is a simple English words ...
- IOS中UIAlertView(警告框)常用方法总结
一.初始化方法 - (instancetype)initWithTitle:(NSString *)title message:(NSString*)message delegate:(id /*&l ...
- HDU 1022 之 Train Problem I
Train Problem I Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)T ...
- HDU3555 Bomb —— 数位DP
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3555 Bomb Time Limit: 2000/1000 MS (Java/Others) M ...
- 666 专题三 KMP & 扩展KMP & Manacher
KMP: Problem A.Number Sequence d.求子串首次出现在主串中的位置 s. c. #include<iostream> #include<stdio.h&g ...
- opencv直方图该怎么画
图像直方图是反映图像中像素分布特性的统计表,一般显示如下: 其中横坐标代表的是图像像素的种类,或者说是灰度级,纵坐标代表的是每一级灰度下像素数或者该灰度级下像素数在所有图像总像素数总所占的百分比. 直 ...
- (转)Vim十大必备插件
原文地址:http://www.open-open.com/lib/view/open1414227253419.html Vim十大必备插件 Taglist taglist是一个用于显示定位程序中各 ...
- Sublime text 安装Package Control
Package Control 插件是一个方便 Sublime text 管理插件的插件,但因为 Sublime Text 3 更新了 Python 的函数,API不同了,导致基于 Python 开发 ...