- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- float x;
- re:
- 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 re;
- system("pause");
- return 0;
- }
複製代碼 |