- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int score;
- cout<<"請輸入你的成績:";
- cin>>score;
- if(score==100)
- cout<<"哇!滿分!!"<<endl;
- else if(score>=60 and score<100)
- cout<<"恭喜你,及格了!"<<endl;
- else if(score>0 and score<60)
- cout<<"不及格,斬!"<<endl;
- else if(score==0)
- cout<<"零分,斬!"<<endl;
- else if(score<0 and score<60)
- cout<<"不及格,斬!"<<endl;
- else
- cout<<"亂輸入,斬!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |