- #include<iostream>
- using namespace std;
- int main()
- {
- int score;
- int level;
-
- cout<<"請輸入你的分數: ";
- cin>>score;
- level=score/10;
- switch(level)
- {
- case 10:
- case 9:
- cout<<"哇!!很好很好!!NO.1喔~"<<endl;
- break;
- case 8:
- cout<<"維持下去!!第一名離你不遠了NO.2~"<<endl;
- break;
- case 7:
- cout<<"多讀一點書啦NO.3!!"<<endl;
- break;
- case 6:
- cout<<"偷懶不讀書!!NO.4"<<endl;
- break;
- default:
- cout<<"你乾脆不要寫~最後第一名!!!"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |