0

嘿伙计们,我正在制作一个数字平均程序,我想插入这个函数,允许用户输入字母“y”再次运行并进行另一次计算,但是,我的程序显示了终止的消息(我正在使用Eclipse)在第一次计算之后,即使我希望用户能够输入输入。以下是令我困惑的源代码部分:

public static void main(String[] args)
{
    Scanner input= new Scanner(System.in);

    System.out.print("This is an averaging program. How many numbers would you like to average together?");
    int total=input.nextInt();
    int i;
    float sum=0;
    for(i=0; i<total; i++)
    {
        System.out.print("Enter your numbers: ");
        sum += input.nextFloat();
    }
    String y;

    System.out.print("Your average is: " + sum/total + "\n");
    System.out.print("Would you like to do another computation? Type y for yes, or something else for no.");
    y=input.nextLine();
4

1 回答 1

3

尝试这个:

改变

sum += input.nextFloat();

sum += input.nextFloat();
input.nextLine();

int total=input.nextInt();

int total=input.nextInt();
input.nextLine();

解释。\n您应该在阅读数字形式后手动阅读换行符Scanner

当然你也应该在do while循环中添加程序的相关部分以便重复执行,但你可能知道这一点。

于 2013-02-14T02:46:39.743 回答