- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int score;
- re:
- cout<<"輸入你的成績:";
- cin>>score;
- switch(score)
- {
- case 80 ... 100:
- cout<<"甲等!";
- break;
- case 70 ... 79:
- cout<<"乙等!";
- break;
- case 60 ... 69:
- cout<<"丙等!";
- break;
- case 50 ... 59:
- cout<<"不及格!";
- break;
- default:
- cout<<"輸入錯誤!";
- }
- cout<<endl<<endl;
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |