返回列表 發帖
本帖最後由 林長逸 於 2013-1-22 12:06 編輯

[
  1. #include<iostream>   
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"請輸入你的分數: ";
  8.     cin>>score;
  9.     if(score==100)
  10.     {
  11.         cout<<"恭喜你,滿分讚"<<endl;
  12.     }else if(score>=60 && score<100)
  13.     {
  14.       cout<<"不錯不錯!"<<endl;
  15.     }else if(score>60)
  16.     {
  17.       cout<<"爛爛爛!"<<endl;     
  18.     }else
  19.     {
  20.       cout<<"什麼啊!!"<<endl;
  21.     }
  22.     system("pause");
  23.     return 0;        
  24. }
複製代碼

TOP

返回列表