本帖最後由 古蕾娜 於 2018-7-11 16:29 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int score;
- cout<<"please enter your score: ";
- cin>>score;
- switch(score)
- {
- case 80 ... 100:
- cout<<"A"<<endl;
- case 70 ... 79:
- cout<<"B"<<endl;
- case 60 ... 69:
- cout<<"C"<<endl;
- case 0 ... 59:
- cout<<"D"<<endl;
- default:
- cout<<"you have entered wrong"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |