次のことを行うJavaプログラムをまとめようとしています:
- 読み取る整数の数を要求して読み取る
- その数の整数を保持できる配列を作成します
- ループを使用して整数値を読み取り、配列を埋めます
- 配列内の平均値を計算します (整数として)
これは私がこれまでに持っているものです(ただし、これは間違っていると確信しています):
public static void Average (Scanner keyboard)
{
System.out.println("Please insert number of integers to read in: ");
keyboard = new Scanner(System.in);
int f = keyboard.nextInt();
int value[]= new int[f];
//I don't know if I should use a while loop here or what the arguments should be
}
ループを設定するには、どのような条件が必要ですか?