- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int score;
- re:
- cout<<"請輸入你的成績:";
- cin>>score;
- if(score=100)
- cout<<"好棒!考滿分"<<endl;
- else if (score<100 && score>=60)
- cout<<"恭喜你及格了,給你糖吃!"<<endl;
- else if (score<=59 && score>=1)
- cout<<"不及格,打屁股"<<endl;
- else if (score=0)
- cout<<"零分斬"<<endl;
- else if (score<0)
- cout<<"負數斬"<<endl;
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |