返回列表 發帖
本帖最後由 陳品蓁 於 2015-8-12 13:54 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"請輸入你的成績:";
  8.     cin>>score;
  9.    
  10.     if(score==100)
  11.        cout<<"恭喜你!太棒了!:"<<endl;
  12.     else if(score<100&&score>=60)
  13.        cout<<"還不錯,下次加油:"<<endl;
  14.     else if(score==0)
  15.        cout<<"太爛了,面壁思過:"<<endl;
  16.     else
  17.        cout<<"輸入錯誤!去罰站:"<<endl;
  18.       
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

TOP

返回列表