返回列表 發帖
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
    int score = 100;
    if(score >=60)
    {
      cout << "及格了" << endl;         
    }
    else
    {
      cout << "不及格! 下次再努力!" << endl;   
    }
    system("pause");
    return 0;
}

TOP

返回列表