// by suzuki // testing try catch statements #include using namespace std; void main() { bool wrong = true; int x; // begin the try-catch statement do { try { wrong = false; cout<<"Enter the divisor "; if( !isdigit( cin.peek()) || cin.peek() == '0') { cin.ignore(); cin.ignore(); wrong = true; throw "!"; } else//execute here { cin>>x; } } catch( char * str ) { cout << "This is a wrong input " << str <