返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int score;
  6.     cout<<"請輸入你(妳)的分數";
  7.     cin>>score;
  8.     if(score>=60)
  9.     {
  10.     cout<<"恭喜你及格了";
  11.     }
  12.     else
  13.     {
  14.     cout<<"你(妳)回家讀你的書吧!";
  15.     }
  16.     cout<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

返回列表