配列をパラメーターとして取り、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;
}
}