- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- for(int i=1; i<=220; i++)
- {
- if(i>=1 && i<=20)
- cout<<"歡 "<<endl;
- if(i>=21 && i<=40)
- cout<<" 迎 "<<endl;
- if(i>=41 && i<=60)
- cout<<" 光 "<<endl;
- if(i>=61 && i<=80)
- cout<<" 臨"<<endl;
- if(i>=81 && i<=100)
- cout<<"歡 "<<endl;
- if(i>=101 && i<=120)
- cout<<"歡迎 "<<endl;
- if(i>=121 && i<=140)
- cout<<"歡迎光 "<<endl;
- if(i>=141 && i<=160)
- cout<<"歡迎光臨"<<endl;
- if(i>=161 && i<=180)
- cout<<"歡迎光臨"<<endl;
- if(i>=181 && i<=200)
- cout<<"歡迎光臨"<<endl;
- if(i>=201 && i<=220)
- cout<<"歡迎光臨"<<endl;
- system("cls");
- }
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |