尝试制作一堆方法并打印出结果。我以为我没事,但是我收到奇怪的错误,我不知道它们是什么意思。 由于某种原因,我什至无法打印出简单的“测试”
我已经写出了这些方法,但是我还没有要求它们,因为我什至不能在不终止的情况下使它起作用。
System.out.print("Test");
public static double pow(double a, double b){
return Math.pow(a, b);
} //Use 3.0 and 2.0
public static double sqrt(double x) {
return Math.sqrt(x);
} //25.0
public static int max(int a, int b) {
if ( a < b ) {return b;}
else {return a;}
} //Use 6 and 2
public static double max(double a, double b) {
if ( a < b ) {return b;}
else {return a;}
} //Use -50.0 and 7.0
public static double random() {
return Math.random();
}
我至少希望打印测试字。也可以让调用时的方法起作用。