- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int score;
- cout<<"plese enter your score: ";
- cin>>score;
- switch(score)
- {
- case 80 ... 100:
- cout<<"A+-A"<<endl;
- break;
- case 70 ... 79:
- cout<<"B+-B"<<endl;
- break;
- case 60 ... 69:
- cout<<"C+-C"<<endl;
- break;
- case 0 ... 59:
- cout<<"D-F"<<endl;
- break;
- default:
- cout<<"Incorrect"<<endl;
- }
- system("pause");
- return 0;
-
-
- }
複製代碼 |