- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- f:
- int x;
- cout<<"請輸入你的成績: ";
- cin>>x;
- if(x>=60 && x<=99)
- cout<<"恭喜,通過考試了!!!!!!!!!!!!"<<endl;
- else if(x==100)
- cout<<"市長獎!棒棒!!!!!!"<<endl;
- else if(x==0)
- cout<<"聯絡簿拿來!!!!!!"<<endl;
- else if(x>=1 && x<=59)
- cout<<"不及格!!!!!!"<<endl;
- else
- cout<<"輸入錯誤!!!請稍後再試"<<endl;
- goto f;
- system("pause");
- return 0;
- }
複製代碼 |