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

TOP

返回列表