Is there any way to use while loop when user enter wrong number? i.e. while(default) or something. I created goto and it's working but it's lame.
default:
{
cin.clear();
cin.sync();
cout << "ERROR! Choose other number: ";
cin >> choose;
goto again;
}