- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- re:
- for(int a=1; a<=14; a++)
- {
- if (a==1)
- cout<<"歡 "<<endl;
- if (a==2)
- cout<<" 迎 "<<endl;
- if (a==3)
- cout<<" 光 "<<endl;
- if (a==4)
- cout<<" 臨"<<endl;
- if (a==5)
- cout<<"歡 "<<endl;
- if (a==6)
- cout<<"歡迎 "<<endl;
- if (a==7)
- cout<<"歡迎光 "<<endl;
- if (a==8)
- cout<<"歡迎光臨"<<endl;
- if (a==9)
- cout<<" "<<endl;
- if (a==10)
- cout<<"歡迎光臨"<<endl;
- if (a==11)
- cout<<" "<<endl;
- if (a==12)
- cout<<"歡迎光臨"<<endl;
- if (a==13)
- cout<<" "<<endl;
- if (a==14)
- cout<<"歡迎光臨"<<endl;
- _sleep(200);
- system("cls");
- }
- goto re;
- return 0;
- }
複製代碼 |