返回列表 發帖
#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

返回列表