I tried all of above but this is not working unfortunately.
Some of them are just ending the program.
I'd like to get sth similar to this(that's how it's written in java)
while(true){
try{
x = Integer.parseInt(br.readline()); //in our case cin>>x;
}catch(Exception e){}
}
just to go over and over again
This one doues not ends the program but also if instructions are never called
#include <iostream>
int main()
{
using namespace std;
while(true){
int x = 0;
while(true){
cin>>x;
if(cin.fail())
{
x= -50;
cin.clear();
cin.ignore(256,' ');
cout << "Please enter valid input";
}
cout<<"fsa "<<x<<endl;;
}
return 0;
}
}