javaMath类随机数math.random()

首先我们看下Math.random()的取值范围,0=<Math.random()<1;切记不能取到1,

接下来写个a到b的随机数方法;


package com.Math随机数;


import java.util.Scanner;


public class Mathrandom {
// static void get_namber(int low,int hig){
// (hig-low+1)表示地位之间的数,相乘得到之间的随机数,加上低位数,再转型就是我们想要的随机数
// int random=(int)(Math.random()*(hig-low+1)+low);
// System.out.println(random);
//
// }
static int count=0;
public static int get_namber(int low ,int hig){
return (int)(Math.random()*(hig-low+1)+low);
}
public static void run_get_namber(){

Scanner sc=new Scanner(System.in);
System.out.println("请输入最小的数");
int low=sc.nextInt();

Scanner sc1=new Scanner(System.in);
System.out.println("请输入最大 的数");
int hig=sc1.nextInt();

System.out.println(get_namber(low,hig));
}
public static void main(String[] args) {
while(true){
run_get_namber();
count++;
// 执行3次后停止
System.out.println(count);
if(count>=3){
System.exit(0);
}
}

}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值