当我运行代码时,它仅输出双精度的小数部分。在另一页上,我输入了一个输入的双精度字并打印出它输入时的双精度字。 但是对于我下面的代码,它仅输出小数。例如,当我输入1.95时,它仅打印出0.95。为什么要删除第一个数字?我在代码中看不到任何指向此的信息。
我已经以一种更简单的方式尝试了它,并且效果很好。而且我看不到任何会与代码中的double混淆的问题。
#include <iostream>
using namespace std;
int main()
{
double price;
char user_input;
do
{
cout << "Enter the purchase price (xx.xx) or `q' to quit: ";
cin >> user_input;
if (user_input == 'q')
{
return 0;
}
else
{
cin >> price;
int multiple = price * 100;
if (multiple % 5 == 0)
{
break;
}
else
{
cout << "Illegal price: Must be a non-negative multiple of 5 cents.\n" << endl;
}
}
} while (user_input != 'q');
cout << price << endl;
}
当我输入1.95时,我得到0.95。但是输出应该是1.95。
答案 0 :(得分:1)
其他答案中涉及的问题:对'q'
的读取已将流中的第一个字符解析为double
。
一种解决方案:首先阅读double
。如果读取失败,请检查输入是否为'q'
。
#include <iostream>
#include <limits>
using namespace std;
int main()
{
double price;
while (true)
{
cout << "Enter the purchase price (xx.xx) or `q' to quit: ";
if (cin >> price)
{
// use price
}
else // reading price failed. Find out why.
{
if (!cin.eof()) // didn't hit the end of the stream
{
// clear fail flag
cin.clear();
char user_input;
if (cin >> user_input && user_input == 'q') // test for q
{
break; // note: Not return. Cannot print price if the
// program returns
}
// Not a q or not readable. clean up whatever crap is still
// in the stream
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
}
else
{
// someone closed the stream. Not much you can do here but exit
cerr << "Stream closed or broken. Cannot continue.";
return -1;
}
}
}
cout << price << endl;// Undefined behaviour if price was never set.
}
另一个合理的选择是将所有输入读取为std::string
。如果string
不是"q"
,请尝试使用double
或std::stod
将其转换为std::istringstream
。
答案 1 :(得分:0)
在命令行中输入1.95时,变量user_input
被分配为'1',而price
被分配为.95。