返回列表 發帖
本帖最後由 陳牧謙 於 2022-4-19 16:58 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){

  5.    int score;
  6.    re:
  7.    cout<<"請輸入你的成績:";
  8.    cin>>score;
  9.     if(score>=60)
  10.     cout<<"恭喜你及格了,給你糖吃!"<<endl;
  11.     else
  12.     cout<<"不及格!打屁股!"<<endl;
  13.     goto re;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表