标准输入流cin无法提示输入

时间:2015-08-12 22:56:30

标签: c++ cin spacing

1 #include<iostream>
  2 using namespace std;
  3 
  4 int main()
  5 {
  6     const double yen_to_euro=0.007215;
  7     const double euro_to_dollar=1.12;
  8     char currency;
  9     double x;
 10 
 11     while(currency!='q')
 12     {
 13         cout << "enter currency and unit(y , e, or d)";
 14         cin >> x >>currency;
 15 
 16         switch(currency){
 17 
 18             case 'y':
 19                 cout <<"euro:"<< x*yen_to_euro<<" dollar:"<<x*yen_to_euro*euro_to_dollar<<'\n';
 20                 break;
 21             case 'e':
 22                 cout <<"yen:"<< (x*(1.0/yen_to_euro))<<" dollar:"<<(x*euro_to_dollar)<<'\n';
 23                 break;
 24             case 'd':
 25                 cout <<" yen:"<< x*(1.0/yen_to_euro)*(1.0/euro_to_dollar)<<" euro:"<<x*(1.0/euro_to_dollar)<<'\n';
 26                 break;
 27             case 'q':
 28                 currency='q';
 29                 break;
 30             default:
 31                 cout << "invalid";
 32                 break;
 33 
 34         }
 35 
 36     }
 37 
 38 
 39 }
~             

上述代码的预期功能是将选定的货币(日元为y,欧元为e,美元为d)转换为其他货币。

例如,如果我想转换为12 Japenese Yen,我会输入:

  

12Y

然后程序将输出

  

欧元:0.08658美元:0.0969696

但是,如果我要输入12e,我会收到一个无限循环。仔细检查代码,似乎没有任何逻辑错误。 尽管如此,我觉得问题的根源与第14行的cin有关,因为如果我分别采取金额x和货币类型:

cin>> x;
cin>> currency;

代码工作正常,但我需要输入金额,然后按Enter键,然后按下代表货币类型的字符。有没有办法只输入一行,没有空格?

此外,为什么这样做?这种通过无限循环的不寻常行为只发生在我输入e代表欧元和q代表退出时。

3 个答案:

答案 0 :(得分:0)

替换cin >> x >>currency;

    try{
      std::string myLine;
      std::getline (std::cin, myLine); // store line into myLine.
      currency = myLine.back(); // get last character from line.
      myLine.pop_back(); // remove last character from myLine.
      x = std::stod(myLine); // try to conver the rest of the string to a double.
    }
    catch (...) {
      //The user typed in something invalid.
      currency= 'i';
    }

另外,请务必#include <string>

请注意,此解决方案假设您使用的是C11。

答案 1 :(得分:0)

12e被解释为浮点数的开头,如12e03。但是结束了,所以你的流出错了(failbit)。此状态会导致所有后续输入失败,直到清除failstate。

您可以使用内部循环检查此类格式错误:

while (...) {
     ...
     while ( (cin >> x >> currency).fail() && !cin.eof()) { // loops as long as there's input and it's invalid
         cout << "invalid format";
         cin.clear(); 
     }
     if (cin.eof())  // if there's no longer input stop looping
         break; 
     ...
 }

live demo

请注意,如果要确保在每种情况下都执行循环,则应将currency初始化为不同于“q”的内容。

顺便说一句,如果输入12 e(带空格),12将被解释为数字,并按照您的预期将x和e放入货币。

答案 2 :(得分:0)

正如其他答案所解释的那样,12e指的是浮点数的科学记数法,因此currency不存储&#39;。

要在没有空格的单行中获取输入,您应该使用std::getline然后解析输入字符串。

由于您知道最后一个字符始终表示货币,因此可以使用std::stoi将前面的字符转换为数字。