返回列表 發帖
本帖最後由 李偈睿 於 2024-6-1 15:04 編輯
  1. #include<iostream>   
  2. #include<cstdlib>      
  3. using namespace std;   
  4. int main()   
  5. {
  6.     int score;
  7.    
  8.     re:
  9.     cout<<"請輸入你的成績";
  10.     cin>>score;
  11.     if(score>=60)
  12.     {
  13.             cout<<"恭喜及格"<<endl;
  14.     }
  15.     else
  16.     {
  17.             cout<<"不及格"<<endl;
  18.     }
  19.         goto re;               
  20.     system("pause");      
  21.     return 0;              
  22. }
複製代碼

TOP

返回列表