我写了一个将int
数组作为参数的方法,然后返回数组的最大条目!
这就是我所做的,但它没有工作!
唯一的错误是largest();
The method largest(int[]) in the type Moon is not applicable for the arguments ()
问题是什么?
public class Moon {
public static void main(String[] args {
int array1[] = {5,10,15,20,25,30};
int max = largest();
System.out.println("the largest number is : " + max);
}
static int largest( int array1[] ){
int maxValue = 0;
for (int i = 0; i < array1.length; i++){
if (array1[i] > array1[maxValue]) maxValue = i;
}
return maxValue;
}
}