返回列表 發帖
本帖最後由 林禹彤 於 2016-5-20 12:30 編輯
  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>=70)
  10.          cout<<"啊不就好棒棒~~"<<endl;
  11.     else
  12.          cout<<"考這樣還敢回家???"<<endl;
  13.    
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表