返回列表 發帖
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int score;
    cout<<"報上你的成績:";
    cin>>score;
    if(score>=60)
    {
      cout<<"你及格了:"<<endl ;         
                 
     }else
     {
        cout<<"你不及格:"<<endl;
         
         
     }            
                 
                 
    system("pause");
    return 0;
}

TOP

返回列表