返回列表 發帖
本帖最後由 李睿宸 於 2022-4-19 20:24 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     re:
  7.     int score;
  8.     cout<<"請輸入成績:";
  9.     cin>>score;
  10.     if(score>=60)
  11.    
  12.         cout<<"及格"<<endl;
  13.    
  14.     else
  15.    
  16.         cout<<"不及格"<<endl;
  17.    goto re;
  18.    
  19.      
  20.    
  21.     system("pause");
  22.     return 0;
  23.    
  24. }
複製代碼

TOP

返回列表