我正在編寫一個程序,用戶輸入10個數字,並在輸入時將它們相加,然後顯示平均值。到目前爲止,我有這個,我堅持要在循環體中放入什麼來實現這一點。謝謝!調用方法添加輸入
import java.util.Scanner;
public class InputMethod
{
public static void main(String[] args)
{
int loop_Value;
int end_Value = 10;
for(loop_Value =0; loop_Value < end_Value; loop_Value++)
{
readInteger();
}
}
private static int readInteger()
{
Scanner scan = new Scanner(System.in);
System.out.println("Enter an integer");
while (!scan.hasNextInt())
{
scan.next();
System.out.println ("Bad input. Enter an integer");
}
int input = scan.nextInt();
{
return input;
}
}
}
等待什麼?我相信你可以自己做。 – Lion 2013-02-28 14:33:22
請務必標記正確的答案! – christopher 2013-02-28 15:39:32