- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a;
- start:
- cout<<"請輸入成績:";
- cin>>a;
- if(a==100)
- {
- cout<<"滿分!!!"<<endl;
- }
- else if(a<100 && a>=60)
- {
- cout<<"恭喜你及格了!!"<<endl;
- }
- else if(a>0 && a<60)
- {
- cout<<"不及格!"<<endl;
- }
- else if(a==0)
- {
- cout<<"零鴨蛋!"<<endl;
- }
- else
- {
- cout<<"輸入錯誤!"<<endl;
- }
- goto start;
- system("pause");
- return 0;
- }
複製代碼 回復 1# 陳品肇 |