そのため、整数のみを受け入れるループを作成しようとしていますが、最初は正常に動作しますが、整数ではないものが文字列ストリームに入力されるとすぐに、正しい入力が使用されていても 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("");
}
}