返回列表 發帖
  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.    int g;
  7.    cout<<"請輸入成績=";
  8.    cin>>g;
  9.    if(g>=60) cout<<"及格"<<endl;
  10.    else cout<<"不及格 "<<endl;
  11.    system("pause");
  12.    return 0 ;
  13.    
  14.    
  15. }
複製代碼

TOP

返回列表