- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- a:
- int x;
- cout<<"請輸入你的分數:";
- cin>>x;
- if(x==100)
- {
- cout<<"滿分!保持!"<<endl;
- }
- else if(x>=60&&x<100)
- {
- cout<<"恭喜你及格了!"<<endl;
- }
- else if(x<60&&x>0)
- {
- cout<<"恭喜你不及格了!"<<endl;
- }
- else if(x==0)
- {
- cout<<"恭喜零分!繼續保持!"<<endl;
- }
- else
- {
- cout<<"輸入錯誤."<<endl;
- }
- goto a;
- system("pause");
- return 0;
- }
複製代碼 |