0

我的代码有问题。请帮我解决它。当输入 q 时,程序应该退出并返回平均值。如果您输入 5 个数字,则可以正常工作。数组大小应为 20。这是代码:

import java.util.Scanner;

public class test{

public static void main(String[] args){

int x;

int count=0;
char q= 'q'; 
Scanner input = new Scanner(System.in);
int[] array = new int[5];
System.out.print("You have entered 0 numbers, please enter a number or q to quit:" );

while (input.hasNextInt()){

for (int i = 0; i < array.length; i++)
{

    array[i] = input.next();

    count++;
    System.out.print("You have entered " +count+ " numbers, please enter a number or q to quit:" );
    }
}

System.out.println("Average is " + Average(array));
}



public static int Average(int[] array) {
int sum = 0;
for (int i = 0; i < array.length; i++)
sum += array[i];
return sum / array.length;
}

}
4

3 回答 3

0

您正在使用一个复合循环,它否定了打破第一个/外部循环的能力。

您应该将两个循环合并为一个循环,寻找两个转义条件,用户按下q或输入 5 个数字......

因为您期望混合输入,所以您需要手动将输入转换为 int....

String line = null;
// Loop until count >= 5 or the user inputs "q"
while (count < array.length && !(line = input.nextLine()).equalsIgnoreCase("q")) {
    try {
        // Convert the input to an int...
        int value = Integer.parseInt(line);
        array[count] = value;
        count++;
        System.out.print("You have entered " + count + " array, please enter a number or q to quit:");
    } catch (NumberFormatException exp) {
        System.out.println(line + " is not an int value...");
    }
}
于 2013-09-20T04:53:41.427 回答
0

使用列表而不是数组。检查输入是否为 q 打印平均值并返回 system.exit(0)

于 2013-09-20T04:50:39.477 回答
0

您应该在每个 input.nextInt() 之前检查 input.hasNextInt()。

于 2013-09-20T04:52:25.127 回答