返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int speed=100;
  8.     for(int i=1; i<=14; i++)      
  9.     {
  10.         if(i==1)   
  11.         cout<<"歡"<<endl;     //歡 迎 光 臨
  12.         if(i==2)
  13.         cout<<"  迎"<<endl;
  14.         if(i==3)
  15.         cout<<"   光"<<endl;
  16.         if(i==4)
  17.         cout<<"    臨"<<endl;
  18.         if(i==5)
  19.         cout<<"歡"<<endl;
  20.         if(i==6)
  21.         cout<<"歡迎"<<endl;
  22.         if(i==7)
  23.         cout<<"歡迎光"<<endl;
  24.         if(i==8)
  25.         cout<<"歡迎光臨"<<endl;
  26.         if(i==9)
  27.         cout<<""<<endl;
  28.         if(i==10)
  29.         cout<<"歡迎光臨"<<endl;
  30.         if(i==11)
  31.         cout<<""<<endl;
  32.         if(i==12)
  33.         cout<<"歡迎光臨"<<endl;
  34.         if(i==13)
  35.         cout<<""<<endl;
  36.         if(i==14)
  37.         cout<<"歡迎光臨"<<endl;            
  38.         _sleep(speed);
  39.         system("cls");   
  40.     }
  41.     goto re;
  42.     system("pause");
  43.     return 0;
  44. }
複製代碼

TOP

返回列表