- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- float score;
- cout<<"請輸入你的成績:";
- cin>>score;
- if(score==100)
- cout<<"滿分!恭喜!"<<endl;
- else if(score<100 and score>=60)
- cout<<"及格了,真棒!"<<endl;
- else if(score<60 and score>0)
- cout<<"再加油!"<<endl;
- else if(score==0)
- cout<<"請加倍努力!"<<endl;
- else
- cout<<"error!!!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |