返回列表 發帖
回復 1# 周政輝


    #include <iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"請輸入成績"<<endl;
    int x=0;
    cin>>x;
    if (x>=60)
    {cout<<"你是學霸"<<endl;
}
    else if(x<60)
    {cout<<"你是學渣" <<endl;
}
    system ("pause");
    return 0;  
}

TOP

返回列表