- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int score;
- cout<<"請輸入你的分數: ";
- cin>>score;
- if (score==100)
- {
- cout<<"滿分!!讚!!"<<endl;
- }
- else if(score>=60 && score<100)
- {
- cout<<"及格!"<<endl;
- }
- else if(score>0 && score<60)
- {
- cout<<"不及格!"<<endl;
- }
- else if(score==0)
- {
- cout<<"小命不保!!"<<endl;
- }
- else
- {
- cout<<"輸入錯誤!"<<endl;
- }
- system ("pause");
- return 0;
- }
複製代碼 |