网站首页 > 技术文章 正文
/**
* 测试Math类的常用方法
* 测试Random类
*/
public class TestMath {
public static void main(String[] args) {
int a = 4;
int b = -5;
int c = 2;
double d = 1.1;
double e = 1.5;
System.out.println(Math.abs(b)+"Math.abs()取绝对值 结果为5 返回结果为同数据类型");
System.out.println(Math.sqrt(a)+"Math.sqrt()取平方根 4开平方结果为2.0 返回double");
System.out.println(Math.pow(c,a)+"Math.pow()幂运算 返回c的a次方 结果为16.0 返回double");
System.out.println(Math.max(a,c)+"Math.max()取两数最大值 结果为4 返回同数据类型");
System.out.println(Math.min(a,c)+"Math.min()取两数最小值 结果为2 返回同数据类型");
System.out.println(Math.ceil(d)+"Math.ceil()取大于d的最小整数 结果为2.0 返回double");
System.out.println(Math.floor(e)+"Math.floor()取小于e的最大整数 结果为1.0 返回double");
System.out.println(Math.random()+"取[0,1)的随机数 返回double 范围包含0不包含1");
System.out.println(Math.round(e)+"Math.round()四舍五入 结果为2 返回long");
System.out.println(Math.toDegrees(Math.PI)+"Math.toDegrees()将弧度转为角度 PI对应3.14 结果为180.0 返回double");
System.out.println(Math.toRadians(45)+"Math.toRadians()将角度转为弧度 45度等于PI/4 结果为0.7853981633974483 返回double");
System.out.println(Math.sin(Math.toRadians(30))+"Math.sin()求弧度的sin值 对边除以斜边 用Math.toRadians将30度转换为弧度 结果为0.49999999999999994 返回double");
System.out.println(Math.cos(Math.PI/4)+"Math.cos()求弧度的cos值 邻边除以斜边 PI/4是45度 结果为0.7071067811865476 返回double");
System.out.println(Math.tan(Math.PI/4)+"Math.tan()求弧度的tan值 对边除以邻边 结果为0.9999999999999999 返回double");
System.out.println(Math.toDegrees(Math.asin(0.5))+"Math.asin()求arcsin值 通过已知sin值求弧度 返回double弧度 加toDegrees()转为角度 结果为30.000000000000004");
System.out.println(Math.toDegrees(Math.acos(1/Math.sqrt(2)))+"Math.acos()求arccos值 返回double弧度 1除以根号2是45度 结果为45.00000000000001");
System.out.println(Math.atan(3.0/4)+"Math.atan()求arctan值 返回double弧度 结果为0.6435011087932844");
Random ran = new Random();
//Random类 用于产生随机数
System.out.println(ran.nextDouble()+"随机生成[0,1)的小数 作用同Math.random");
System.out.println(ran.nextInt()+"随机生成int值 正负21亿之间随机取");
System.out.println(ran.nextBoolean()+"随机生成true或者false");
System.out.println(ran.nextInt(10)+"随机生成[0,10)区间的整数 不包含10 随机0-9");
System.out.println(20+ran.nextInt(6)+"随机生成20-25的整数 .nextInt(6)是0-5 +20变成20-25");
}
}
猜你喜欢
- 2024-11-09 极客算法训练笔记(十),十大经典排序之计数排序、基数排序
- 2024-11-09 Axure RP 9 学习笔记 - 常用数学函数
- 2024-11-09 判断坐标点是否在高德地图围栏内的算法?
- 2024-11-09 Quick Pow: 如何快速求幂 快速幂算法
- 2024-11-09 十六、Java运算符-优先级与表达式
- 2024-11-09 抖音B站…推荐机制的原型,威尔逊得分排序算法
- 2024-11-09 浅谈移动设备交互体验之惯性滚动 惯性移轴定理
- 2024-11-09 JS中常见的Math对象 javascript中math
- 2024-11-09 力扣73——矩阵置零 矩阵置0
- 2024-11-09 基数排序的1个小技巧,2种排序方式,3种排序算法
- 标签列表
-
- content-disposition (47)
- nth-child (56)
- math.pow (44)
- 原型和原型链 (63)
- canvas mdn (36)
- css @media (49)
- promise mdn (39)
- readasdataurl (52)
- if-modified-since (49)
- css ::after (50)
- border-image-slice (40)
- flex mdn (37)
- .join (41)
- function.apply (60)
- input type number (64)
- weakmap (62)
- js arguments (45)
- js delete方法 (61)
- blob type (44)
- math.max.apply (51)
- js (44)
- firefox 3 (47)
- cssbox-sizing (52)
- js删除 (49)
- js for continue (56)
- 最新留言
-