"a" のような文字のユーザー キーを使用すると、無限ループが発生します。デフォルトでは機能しません。
無限ループの代わりにエラーメッセージを出力するように例外処理を行うにはどうすればよいですか。
ありがとう!
以下は私のコードです:
done=false;
do
{
cout << "Please select the department: " << endl;
cout << "1. Admin " << endl;
cout << "2. HR " << endl;
cout << "3. Normal " << endl;
cout << "4. Back to Main Menu " << endl;
cout << "Selection: ";
cin >> choice;
switch (choice) {
case 1:
department_selection = "admin";
done=true;
break;
case 2:
department_selection = "hr";
done=true;
break;
case 3:
department_selection = "normal";
done=true;
break;
case 4:
selection = "hr_menu";
done=true;
break;
default:
cout << "Invalid selection - Please input 1 to 3 only.";
done=false;
}
}while(done!=true);