Math中的常用方法

package educoder;
public class MathTest{public static void main(String args[]){ /** *Math.sqrt()//计算平方根*Math.cbrt()//计算立方根*Math.pow(a, b)//计算a的b次方*Math.max( , );//计算最大值*Math.min( , );//计算最小值*/System.out.println(Math.sqrt(16));  //4.0 System.out.println(Math.cbrt(8));  //2.0System.out.println(Math.pow(3,2));   //9.0System.out.println(Math.max(2.3,4.5));//4.5System.out.println(Math.min(2.3,4.5));//2.3/** * 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 System.out.println(Math.ceil(-1.7));  //-1.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 /** * random 取得一个大于或者等于0.0小于不等于1.0的随机数 */System.out.println(Math.random()); //小于1大于0的double类型的数System.out.println(Math.random()*2);//大于0小于1的double类型的数System.out.println(Math.random()*2+1);//大于1小于2的double类型的数/** * 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 } }

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/327191.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Springmvc中提交from之后不跳转不进控制器

今天在自学springmvc之后写了一个简单的案例&#xff0c;可是不管怎么改都不进入控制器Controller&#xff0c;找了好久之后原来是粗心有个地方写错了&#xff0c;详情请往下看&#xff1a; 在springmvx-servlet.xml里面&#xff1a; <!-- 配置HandlerMapping映射&#xff…

asp.net core 认证及简单集群

众所周知&#xff0c;在Asp.net WebAPI中&#xff0c;认证是通过AuthenticationFilter过滤器实现的&#xff0c;我们通常的做法是自定义AuthenticationFilter&#xff0c;实现认证逻辑&#xff0c;认证通过&#xff0c;继续管道处理&#xff0c;认证失败&#xff0c;直接返回认…

Java开发2018年值得学习的10大技术

转载自 Java开发2018年值得学习的10大技术 作为一个开发人员&#xff0c;我们最大的挑战就是保持自己了解新的技术。技术变化很快,你大概每两年就会看到一个新版本的编程语言和框架。 就拿2017年来说&#xff0c;AR、VR、区块链、人工智能等等已经扑面而来了。除了这些离我们…

Could not open ServletContext resource [/WEB-INF/springmvc-servlet.xml]【解决方案】

第一次自学springmvc的时候&#xff0c;老是报错Could not open ServletContext resource [/WEB-INF/springmvc-servlet.xml]&#xff0c;郁闷的不要不要的。按照配置规则重新检查了一遍&#xff0c;没看出问题来&#xff0c;上网搜了一下说在web.xml里面加入: <servlet>…

成小胖学习微服务架构·基础篇

看到最近“微服务架构”这个概念这么火&#xff0c;作为一个积极上进的程序猿&#xff0c;成小胖忍不住想要学习学习。而架构师老王&#xff08;不是隔壁老王&#xff09;最近刚好在做公司基础服务的微服务化研究和落地&#xff0c;对此深有研究。 于是成小胖马上屁颠屁颠的跑过…

出场率比较高的一道多线程安全面试题

转载自 出场率比较高的一道多线程安全面试题 下面这个问题是 Java 程序员面试经常会遇到的吧。 工作一两年的应该都知道 ArrayList 是线程不安全的&#xff0c;要使用线程安全的就使用 Vector&#xff0c;这也是各种 Java 面试宝典里面所提及的&#xff0c;可能很多工作好几…

JDBC连接数据库教程,postgreSQL

https://blog.csdn.net/jg15617651654/article/details/63262456/ JDBC连接数据库教程&#xff0c;postgreSQL 流年你奈我何 2017-03-18 17:17:43 17389 收藏 4 分类专栏&#xff1a; Postgres 修炼之道 文章标签&#xff1a; postgresql 数据库 事务 jdbc 版权 0、概述 …

Springmvc入门案例(1)

据说&#xff0c;现在springmvc火了&#xff0c;好多企业都在使用&#xff0c;既然这样&#xff0c;咱们也得会点&#xff0c;于是乎就开始自学了&#xff0c;通过找资料&#xff0c;终于做出来了一个简单案例&#xff0c;这里分享供大家浏览&#xff0c;主要分为以下几个步骤&…

微软Project Springfield团队的F#使用心得

Project Springfield是一个用于在软件中查找关键安全错误的模糊测试服务。微软Springfield团队首席软件工程经理William Blum介绍了他们团队如何利用F#来构建云服务。 简洁性经常被认为是F#的主要优点之一。Blum提供了一些Project Springfield相关的数据&#xff1a; 为了移除一…

正则表达式中各种字符的含义

转载自 正则表达式中各种字符的含义 正则表达式(regular expression)描述了一种字符串匹配的模式&#xff0c;可以用来检查一个串是否含有某种子串、将匹配的子串做替换或者从某个串中取出符合某个条件的子串等。 列目录时&#xff0c; dir *.txt或ls *.txt中的*.txt就不是一…

WRF文件打开方式

今天有幸接触了下.WRF文件&#xff0c;百度了一下&#xff1a; WRF是使用WebEx录制器生成的新格式文件&#xff0c;WebEx 设计这种格式是为了便于以后提供强大的WebEx 录制器和播放器新功能。 哦哦&#xff0c;既然是这样的话&#xff0c;那就一般的播放器肯定是不能打开&…

Java:出生日期转年龄

private int getAge(Date birthDay) {Calendar cal Calendar.getInstance();//出生日期晚于当前时间&#xff0c;无法计算if (cal.before(birthDay)) {throw new IllegalArgumentException("The birthDay is before Now.Its unbelievable!");}//当前年份int yearNow…

实现BUG自动检测 - ASP.NET Core依赖注入

我个人比较懒&#xff0c;能自动做的事绝不手动做&#xff0c;最近在用ASP.NET Core写一个项目&#xff0c;过程中会积累一些方便的工具类或框架&#xff0c;分享出来欢迎大家点评。 如果以后有时间的话&#xff0c;我打算写一个系列的【实现BUG自动检测】&#xff0c;本文将是…

java语音播报案例

在做项目的过程中&#xff0c;我们往往会用到语音播报——把文字转换成语音播放出来&#xff0c;自动识别语言进行播报&#xff0c;那么我们现在来看看怎么操作&#xff1a; 1.下载jacob.jar&#xff0c;下载地址&#xff1a;这里 2.32位操作系统下载&#xff1a;jacob-…

玩转SpringBoot之定时任务详解

玩转SpringBoot之定时任务详解 https://www.cnblogs.com/mmzs/p/10161936.html 玩转SpringBoot之定时任务详解 阅读目录&#xff1a; 序言一、静态&#xff1a;基于注解二、动态&#xff1a;基于接口三、多线程定时任务阅读正文&#xff1a; 回到顶部 序言 使用SpringBoot创…

Java开发人员必知必会的20种常用类库和API

转载自 Java开发人员必知必会的20种常用类库和API 一个有经验的Java开发人员特征之一就是善于使用已有的轮子来造车。《Effective Java》的作者Joshua Bloch曾经说过&#xff1a;“建议使用现有的API来开发&#xff0c;而不是重复造轮子”。在本文中,我将分享一些Java开发人员应…