1

所以我试图创建一个只接受整数的循环,它最初工作正常,但是一旦输入不是整数的东西,即使使用了正确的输入,它也会不断地跳过 if 语句。我错过了什么吗?

# include "stdafx.h"
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>

using namespace std;


int main()
{
  string str;
  stringstream ss;
  int a;


  for(;;)
    {
      getline(cin, str);
      ss<<str;
      if (ss>> a)
        {
          cout<<"okay";
          break;
        }
      cout<<str<<endl;//debugging (prints the correct input
      str.clear();    //
      ss>>str;        //
      cout<<str<<endl;// doesn't print anything but the endl space
      cout<< "try again";
ss.str("");
}

}
4

1 回答 1

0

ss.str("");在循环内移动for,以便stringstream在您阅读下一行之前将其清除。

}您粘贴的代码中还有一个额外的内容。也许这与那条线如何在循环之外结束有关。

或者,您可以使用:

ss.str(str);

从输入中填写stringstream,而不是使用>>.

于 2013-06-28T20:43:33.417 回答