返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   int score;
  6.   cout<<"請輸入你的分數: ";
  7.   cin>>score;
  8.   if(score==100)
  9.   {
  10.   cout<<"你可以考雄中!";  
  11.   }else if(score>=60 and score>=99)
  12.   {
  13.   cout<<"恭喜恭喜!及格了!";
  14.   }else if(score>=1 and score>=59)
  15.   {
  16.   cout<<"不及格吃豬屎吧!";
  17.   }else if(score==0)
  18.   {
  19.   cout<<"你考這分數!我非宰了你不可!";
  20.   }else
  21.   {
  22.   cout<<"輸入錯誤!";                     
  23.   }
  24.   cout<<endl;
  25.   system("pause");
  26.   return 0;
  27. }
複製代碼

TOP

返回列表