- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- int j=0;
- for(int i=1; i<=100; i++)
- {
- if(i>=1 && i<=50 && i%2==0)
- j++;
- if(i>=50 && i<=100 && i%2==0)
- j--;
- for(int i=1; i<=j; i++)
- {
- cout<<" ";
- }
- cout<<"歡迎光臨";
- system("cls");
- }
-
- int c=0;
- for(int v=1; v<=60; v++)
- {
- if(v>=1 && v<=30 && v%2==0)
- c++;
- if(v>=30 && v<=60 && v%2==0)
- c--;
- for(int v=1; v<=c; v++)
- {
- cout<<" ";
- }
- cout<<"歡迎";
- system("cls");
- }
- int z=0;
- for(int x=1; x<=100; x++)
- {
- if(x>=1 && x<=50 && x%2==0)
- z++;
- if(x>=50 && x<=100 && x%2==0)
- z--;
- for(int x=1; x<=z; x++)
- {
- cout<<" ";
- }
- cout<<"光臨";
- system("cls");
- }
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |