Math类

Math类

概述

用于数学运算

成员变量

public static final double PI
public static final double E

成员方法

1、static double abs(double a)

返回 double 值的绝对值。

2、static double cbrt(double a)

返回 double 值的立方根。

3、static double ceil(double a)

向上取整

4、static double floor(double a)

向下取整

5、static double max(double a, double b)

最大值

6、static double min(double a, double b)

最小值

7、static double pow(double a, double b)

a的b次幂

8、static double random()

随机数

9、static int round(float a)

四舍五入

10、static double sqrt(double a)

正平方根

实现获取任意范围的随机数

public class MethDemo {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		System.out.println("请输入开始数");
		int start = sc.nextInt();
		System.out.println("请输入结束数");
		int end = sc.nextInt();
		for (int x = 0; x < 100; x++) {

			int num = getRandom(start, end);
			System.out.println(num);
		}
	}

	private static int getRandom(int start, int end) {
		int number = (int) (Math.random() * (end - start+1));
		return number;
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值