返回列表 發帖
本帖最後由 蒙鎧柔 於 2017-7-5 11:27 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.    int score;
  7.    
  8.    cout<<"your score:";
  9.    cin>>score;
  10.    if(score>=60)
  11.     {      
  12.             cout<<"pass"<<endl;
  13.             }else
  14.             {
  15.             cout<<"fail"<<endl;
  16. }
  17. system("pause");
  18. return 0;
  19. }
複製代碼

TOP

返回列表