1.编写一个方法,使用以上算法生成指定数目(比如1000个)的随机整数。
import java.util.Scanner;
public class suiji{
public static void main(String[] args) {
System.out.print("请输入要输出多少个随机数:");
Scanner s = new Scanner(System.in);
int n = s.nextInt();
int x = (int)(Math.random() * 1000);
int a = (int)(Math.random() * 1000);
int c = (int)(Math.random() * 1000);
int m = (int)(Math.random() * 1000);
for(int i = 0;i < n;i++)
{
x = (a * x + c) % m;
System.out.print(x + " ");
}
}
}
2.请看以下代码,你发现了有什么特殊之处吗?
方法的重载有两个条件必须满足
(1)方法名相同;
(2)参数类型不同,参数个数不同,或者是参数类型的顺序不同。
3.查看一下JDK中System.out.println()方法,你发现了什么?
JDK中有许多System.out.println()同名的重载方法。为了使编程时输出更加方便,所以把输出的方法都同名重载。