我有一個while循環,我想逃跑時,我到5While循環逃生範圍
打數1什麼是放了,最好的說法?
我目前有這個。
while ( oneChoice!= 1 || oneChoice!= 2 || oneChoice!= 3 || oneChoice!= 4 || oneChoice!= 5 )
{
cout << "Please make a selection" << endl;
cout << "Choose once more: ";
cin >> oneChoice;
break;
}
爲什麼那裏有'break'? – Griwes
剛剛刪除'break' – 2011-10-09 20:07:16
它在switch語句中的另一個while循環內使用 – mystycs