返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     f:
  7.     int x;   
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>x;
  10.     if(x>=60  &&  x<=99)
  11.         cout<<"恭喜,通過考試了!!!!!!!!!!!!"<<endl;
  12.     else if(x==100)
  13.         cout<<"市長獎!棒棒!!!!!!"<<endl;
  14.     else if(x==0)
  15.         cout<<"聯絡簿拿來!!!!!!"<<endl;
  16.     else if(x>=1 && x<=59)
  17.         cout<<"不及格!!!!!!"<<endl;   
  18.     else
  19.         cout<<"輸入錯誤!!!請稍後再試"<<endl;
  20.     goto f;
  21.     system("pause");      
  22.     return 0;     
  23. }
複製代碼

TOP

返回列表