返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {   
  5.     int score;
  6.    
  7.     cout<<"請輸入你的成績:";
  8.     cin>>score;
  9.     cout<<"你的成績是"<<score<<"分"<<endl;
  10.     if(score>=60)
  11.     {
  12.        cout<<""<<endl;            
  13.     }else
  14.     {
  15.        cout<<""<<endl;  
  16.     }   
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

返回列表