【Java语言程序设计(基础篇)第10版 练习题答案】Practice_9_4

(使用随机类 Random)编写一个程序,创建种子是 1000 的 Random 对象,然后使用 nextInt(100) 方法显示 0 到 100 之间的 50 个随机整数。

import java.util.Random;

public class Practice_9_4 {

	public static void main(String[] args) {
		
		Random random = new Random(1000);
		
		for (int i = 0, n = 0; i < 50; i++, n++) {
			
			if(n == 5) {
				
				System.out.println("");
				n = 0;
				
			}
			
			System.out.print(random.nextInt(100) + "\t");
`
			
		}

	}

}

输出结果为:

87 35 76 24 92
49 41 45 64 50
79 59 72 83 36
75 46 2 23 41
22 71 89 2 93
42 49 42 35 76
32 0 52 95 87
31 99 18 79 2
91 5 55 84 71
95 58 87 77 38

你可能感兴趣的:(语言)