- #include<iostream>
- using namespace std;
- int main()
- {
- int score;
- cout<<"請輸入你的分數: ";
- cin>>score;
- if(score==100)
- {
- cout<<"你可以考雄中!";
- }else if(score>=90 and score<=100)
- {
- cout<<"好優喔!及格了!";
- }else if(score>=80 and score<=89)
- {
- cout<<"你不錯喔!";
- }else if(score>=70 and score<=79)
- {
- cout<<"你考乙?!我非宰了你不可!";
- }else if(score>=60 and score<=69)
- {
- cout<<"你得丙?會被我打!";
- }else if(score>=0 and score<=59)
- {
- cout<<"你居然得丁?";
- }else
- {
- cout<<"輸入錯誤!";
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |