gpt4 book ai didi

c++ - 输入float后用户输入结束

转载 作者:行者123 更新时间:2023-11-30 03:51:31 27 4
gpt4 key购买 nike

我正在尝试让一个 C++ 程序将用户输入输出到一个空文件中。但是,当输入一个 float 后,程序通过调用下一个 session 结束当前输入 session 。下面是用户输入函数的代码。

vector<Item> insertProducts()
{
vector<Item> products;

string name;
string code;
float price;
string unit;

bool repeat = true;

while(repeat) // program will keep asking for another round of input after one session ends
{
cout << "Enter product description: ";
getline(cin, name);

if(name.compare("#") != 0) // program stop asking for input if # is entered
{
cout << "Enter product code: ";
getline(cin, code);
cout << "Enter product unit price: ";
cin >> price;
cout << "Enter product unit phrase: ";
getline(cin, unit);
cout << "" << endl;

Item newProduct = Item(code, name, price, unit);
products.push_back(newProduct);
}
else
{
repeat = false;
printCatalog(products);
}
}

return products;
}

下面是输入一个 float 价格后的结果,程序跳过单位短语的输入,直接进入另一轮输入。

Enter product description: Potato Chips
Enter product code: P3487
Enter product unit price: 1.9
Enter product unit phrase: Enter product description:

我可以知道是什么原因导致这个问题,我该如何解决?

最佳答案

您的问题是,在 cin >> price; 之后,用户用来终止价格输入的换行符仍在输入缓冲区中——它是下一个要读取的字符。下面的 std::getline 然后读取它并返回一个空行。

清除这种尾随换行符的最可靠方法是告诉流忽略包括下一个换行符在内的所有内容:

cin >> price;
cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');

关于c++ - 输入float后用户输入结束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31205305/

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