gpt4 book ai didi

java - 程序输出太多行?

转载 作者:行者123 更新时间:2023-12-01 18:37:56 33 4
gpt4 key购买 nike

import java.util.Scanner;
public class Sales
{
public static void main (String[] args)
{

Scanner scan = new Scanner(System.in);

String[] name = new String[5];
double[] sales = new double[5];

for (int i=0; i<5; i++) {
System.out.println ("What is the name of the person?");
name[i] = scan.nextLine();
System.out.println ("How much did he/she sell?");
sales[i] = scan.nextDouble();
}
for (int j=0; j<5; j++) {
System.out.println (name[j] + " sold " + sales[j]);
}


int sum = 0;
for (double k : sales){
sum+=k;
}

double avg = sum / 5;
System.out.println ("The average sales is: " + avg);

for (int i = 0; i < 5; i++) {
if (sales[i] >= avg){
System.out.println (name[i] + " sold more than the average sales.");
}
}
}

}

(此代码只是程序的一部分。抱歉,如果它有点困惑[我是初学者])这就是问题...它的输出如下:
此人的名字是什么?
帕特里克
他/她卖了多少钱?
8000
此人的名字是什么?
他/她卖了多少钱?

粗体行是问题所在。我想输入不同的名称和金额,但它同时询问我两次。任何帮助将不胜感激。谢谢。

最佳答案

nextDouble之后,您必须调用scan.NextLine()来删除输出中留下的行尾字符。

scan.nextDouble 方法只读取数字,不读取其他内容。因为用户通过按回车键“确认”他的输入,所以他还将在那里发送一个行尾字符。然后,for 循环会将这个行尾字符作为第一个问题的输入。因此 - 读取 double 值后,只需调用一个空的 scan.NextLine() 就可以了:-) 。

关于java - 程序输出太多行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21057732/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com