Java学习笔记,持续更新中
System.out.println("16的平方为:"+Math.sqrt(a));
System.out.println("2^3="+Math.pow(2, 3));
System.out.println("-4的绝对值="+Math.abs(-4));
System.out.println("100的对数="+Math.log10(100));
向上向下取整
int b = (int)Math.floor(a);//向下取整,返回 double 类型
int c = (int)Math.ceil(a);//向上取整 ceil(x)函数返回大于等于x的最小double类型整数 例如:ceil(3.8) 返回 4.0
四舍五入
Math.ceil(double a)//向上舍入,将数值向上舍入为最为接近的整数,返回值是double类
Math.floor(double a)//向下舍入,将数值向下舍入为最为接近的整数,返回值是double类型
Math.round(float a)//标准舍入,将数值四舍五入为最为接近的整数,返回值是int类型
Math.round(double a)//标准舍入,将数值四舍五入为最为接近的整数,返回值是long类型
求值函数
Math.max(a,b) //求两个数的最大值,只能两个,但可以嵌套,求出a b之间的大值
Math.min(x, y)//求两个数中的最小值
Math.abs() //方法返回参数的绝对值参数可以是 int, float, long, double, short, byte 类型
Math.log(x)//返回参数的自然数底数的对数值 Math.E 求小e的值
Math.pow(x,y)// 方法返回第一个参数的第二个参数次方
Math.sqrt() //方法返回参数的算术平方根
Math.sin() //方法返回指定 double 类型参数的正弦值
Math.cos() //方法返回指定 double 类型参数的余弦值
Math.tan() //方法返回指定 double 类型参数的正切值
Math.asin() //方法返回指定 double 类型参数的反正弦值
Math.random()//产生大于等于 0 小于 1 的一个double类型随机数,[0,1)
float f=-90;
System.out.println(Math.abs(-8));//输出8
System.out.println(Math.abs(-66.78));//输出66.78
System.out.println(Math.abs(f));//输出90.0
求阶乘
Public static long factorial(longnumber){
if(number<=1)
return1;
else
returnnumber*factorial(number-1);
}
数字类型范围问题
当int或者long超出取值范围时,用 java.math.BigInteger 来表示任意大小的整数
常用的两种定义方式
BigInteger a=new BigInteger("123"); //没有参数为long的构造函数,用字符串来构造 BigInteger b=BigInteger.valueOf(123);
//静态方法,返回val对应的BigInteger BigInteger类中定义了四则运算的方法,add,subtract,multiply,divide。对 BigInteger 做运算的时候,只能使用实例方法。 如: a=a.add(b);
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/91159.html