Java中随机数的产生有两种方法:
一、利用Random类的实例对象产生:
Random r = new Random(); int i =r.nextInt(99)+1; //产生1-100之间的随机整数
二、利用Math类的random()方法产生:
int i= (int)(Math.random()*99+1); //产生的1-100之间的实数,强制类型取整
下面我们用具体的代码来演示一下具体的用法吧
import java.util.Random; public class RandomTest { public static void main(String[] args) { //利用Random类的实例 Random r = new Random(); int count=0; System.out.println("Random类生成的数为:"); while(count<10){ int i =r.nextInt(99)+1;//产生1-100以内的随机数 count++; System.out.println("第"+count+"个数为:"+i); } //利用Math类的random()方法 System.out.println("Math类生成的数为:"); int count1=0; while(count1<10){ int i =(int)(Math.random()*99+1);//产生1-100以内的随机数 count1++; System.out.println("第"+count1+"个数为:"+i); } } }
以上就是Java中随机数的产生的内容,更多相关内容请关注PHP中文网(www.php.cn)!