本帖最後由 謝易錚 於 2016-5-24 09:59 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int score;
- re:
- cout<<"來吧!輸入成績吧!:";
- cin>>score;
- switch(score)
- {
- case 80 ... 100:
- cout<<"不錯嘛~"<<endl;
- break;
- case 70 ... 79:
- cout<<"再接再厲囉!!" <<endl;
- break;
- case 60 ... 69:
- cout<<"好可憐喔!!"<<endl;
- break;
- case 0 ... 59:
- cout<<"你沒救了"<<endl;
- break;
- default:
- cout<<"喂!別亂輸入啊"<<endl;
- }
- cout<<endl;
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |