java课后作业2

动手动脑1

用纯随机数算法生成指定数目的随机数

public class weiyunsuan {
public static void main(String args[]){
int x[]=new int[1000];
x[0]=1;
System.out.println(x[0]);
for(int i=1;i<=999;i++){
x[i]= (int) ((16807*x[i-1])%(Math.pow(2,31)-1));
System.out.println(x[i]);
}
}
}
 
动手动脑2
// MethodOverload.java
// Using overloaded methods

public class MethodOverload {

    public static void main(String[] args) {
        System.out.println("The square of integer 7 is " + square(7));
        System.out.println("\nThe square of double 7.5 is " + square(7.5));
    }

    public static int square(int x) {
        return x * x;
    }

    public static double square(double y) {
        return y * y;
    }
}
square 方法实现了方法的重载第一个打印输出调用的是第一个方法,第二个打印输出调用第二个方法。

实现方法重载关系:1方法名相同,2参数类型不同,参数个数不同,参数类型的顺序不同。
posted @ 2023-09-20 20:24  千恒  阅读(3)  评论(0编辑  收藏  举报