返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     for(int i=1; i<=220; i++)
  8.     {
  9.          if(i>=1 && i<=20)
  10.              cout<<"歡      "<<endl;
  11.          if(i>=21 && i<=40)
  12.              cout<<" 迎  "<<endl;
  13.          if(i>=41 && i<=60)
  14.              cout<<"  光 "<<endl;
  15.          if(i>=61 && i<=80)
  16.              cout<<"   臨"<<endl;
  17.          if(i>=81 && i<=100)
  18.              cout<<"歡   "<<endl;
  19.          if(i>=101 && i<=120)
  20.              cout<<"歡迎  "<<endl;
  21.          if(i>=121 && i<=140)
  22.              cout<<"歡迎光 "<<endl;
  23.          if(i>=141 && i<=160)
  24.              cout<<"歡迎光臨"<<endl;
  25.          if(i>=161 && i<=180)
  26.              cout<<"歡迎光臨"<<endl;
  27.          if(i>=181 && i<=200)
  28.              cout<<"歡迎光臨"<<endl;
  29.          if(i>=201 && i<=220)
  30.              cout<<"歡迎光臨"<<endl;
  31.     system("cls");
  32.     }
  33.     goto re;
  34.     system("pause");
  35.     return 0;
  36. }
複製代碼

TOP

返回列表