C ++中cin.get()的问题?

时间:2011-05-18 02:27:27

标签: c++ cin

我有以下代码:

#include <conio.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
        int x = 0;
        cout << "Enter x: " ;
        cin >> x;
        if (cin.get() != '\n') // **line 1**
        {
            cin.ignore(1000,'\n');
            cout << "Enter number: ";
            cin >> x;
        }

        double y = 0;
        cout << "Enter y: ";
        cin >> y;       
        if (cin.get() != '\n'); // **Line 2**
        {
            cin.ignore(1000,'\n');
            cout << "Enter y again: ";
            cin >> y;   
        }
        cout << x << ", " << y;

    _getch();

    return 0;
}

执行时,我可以输入x值,它会按照我的预期忽略第1行。但是,当程序询问y值时,我输入了一个值,但程序没有忽略第2行时的值?我不明白,第1行第2行有什么区别?我怎样才能使它按预期工作?

1 个答案:

答案 0 :(得分:8)

if (cin.get() != '\n'); // **Line 2**
// you have sth here -^

删除该分号。如果它存在,if语句基本上什么都不做 此外,您没有测试用户是否确实输入了数字......如果我输入'd'该怎么办? :)

while(!(cin >> x)){
  // woops, something has gone wrong...
  // display a message to tell the user he made a mistake
  // and after that:
  cin.clear(); // clear all errors
  cin.ignore(1000,'\n'); // ignore until newline

  // and try again, while loop yay
}
// now we have correct input.