java Math类的常用方法介绍
2021-03-31 03:28
标签:参数 amp floor 溢出 sub com 其他 dde math public class MainTest { public static void main(String[] args) { //求sin值 double sin = Math.sin(3.14); System.out.println("sin3.14=" + sin); //求cos值 double cos = Math.cos(0); System.out.println("cos0=" + cos); //求tan值 double tan = Math.tan(0.785); System.out.println("tan0.785=" + tan); //求arcsin double arcsin = Math.asin(1); System.out.println("arcsin1 = " + arcsin); //求arccos double arccos = Math.acos(1); System.out.println("arccos = " + arccos); //求arctan double arctan = Math.atan(30); System.out.println("arctan30 = " + arctan); //求弧度 double radians = Math.toRadians(180); System.out.println("180度角的弧度为" + radians); //求角度 double angle = Math.toDegrees(3.141592653589793); System.out.println("π的角度数为" + angle); //求以e为底的指数 double exp = Math.exp(1); System.out.println("以e为底指数为1的数为" + exp); //求以e为底e的平方的对数 double log = Math.log(Math.E * Math.E); System.out.println("以e为底e的平方的对数" + log); //求以10为底100的对数 double log10 = Math.log10(100); System.out.println("以10为底100的对数" + log10); //求100的平方根 double sqrt = Math.sqrt(100); System.out.println("100的平方根是" + sqrt); //求27的立方根 double cbrt = Math.cbrt(27); System.out.println("27的立方根是" + cbrt); //求10除以3的余数 double rest = Math.IEEEremainder(10, 3); System.out.println("10除以3的余数为" + rest); //求0.9向上取整 double ceil = Math.ceil(0.9); System.out.println("0.9向上取整" + ceil); //求2.49向下取整 double floor = Math.floor(2.49); System.out.println("2.49向下取整" + floor); //求最接近参数的整数值(若有两个满足条件的数据则取为偶数的数据) double rint = Math.rint(3.5); System.out.println("最接近参数的整数值" + rint); //获得(1,1)坐标与x轴夹角度数 double atan2 = Math.atan2(1, 1); System.out.println("坐标(1,1)的极坐标为" + atan2); //求3的5次方 double pow = Math.pow(3, 5); System.out.println("3的5次方" + pow); //4舍5入 double round = Math.round(3.5); System.out.println("3.5四舍五入为" + round); //计算2
int sum = Math.addExact(2
System.out.println("2
//计算2
int subTract = Math.subtractExact(2
System.out.println("2
//计算2
int multiply = Math.multiplyExact(2
System.out.println("2
//计算2
int increment = Math.incrementExact(2
System.out.println("2
//计算2
int decrementExact = Math.decrementExact(2
System.out.println("2
//计算2
int negate = Math.negateExact(2
System.out.println("2
//long转int 2
int intNum = Math.toIntExact(2
System.out.println(intNum); //2&3 2在2进制中为10 3为11 & 表示相同位都为1则为1,其他为0 10&11 2进制第二位都为1 所以 2&3=10=2 //multiplyHigh意义未知 //计算2
int floorDiv = Math.floorDiv(2
System.out.println("2
//取模运算(算法与取余相同,但负数运算是计算方式不同) int floorMod = Math.floorMod(10,3); System.out.println("10/3的模="+floorMod); //取-52的绝对值 int abs = Math.abs(-52); System.out.println("-52的绝对值="+abs); //比较2
int max = Math.max(2
System.out.println("2
//比较2
int min = Math.min(2
System.out.println("2
//计算3乘5加4 double fma = Math.fma(3,5,4); System.out.println("3乘5加4="+fma); } } 执行结果 sin3.14=0.0015926529164868282 cos0=1.0 tan0.785=0.9992039901050427 arcsin1 = 1.5707963267948966 arccos = 0.0 arctan30 = 1.5374753309166493 180度角的弧度为3.141592653589793 π的角度数为180.0 以e为底指数为1的数为2.718281828459045 以e为底e的平方的对数2.0 以10为底100的对数2.0 100的平方根是10.0 27的立方根是3.0 10除以3的余数为1.0 0.9向上取整1.0 2.49向下取整2.0 最接近参数的整数值4.0 坐标(1,1)的极坐标为0.7853981633974483 3的5次方243.0 郑州治疗胎记多少钱 http://www.zykdtj.com/ 3.5四舍五入为4.0 2
2
2
2
2
2
65536 2
10/3的模=1 -52的绝对值=52 2
2
3乘5加4=19.0 java Math类的常用方法介绍 标签:参数 amp floor 溢出 sub com 其他 dde math 原文地址:https://www.cnblogs.com/12man/p/13571678.html