- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- re:
- string a[]{"歡","迎","光","臨"};
- for(int i=0; i<=3; i++)
- {
- cout<<a[i];
- _sleep(500);
- system("cls");
- for(int j=0; j<=i; j++)
- {
- cout<<" ";
- }
- }
- system("cls");
- for(int i=0; i<=3; i++)
- {
- cout<<a[i];
- _sleep(500);
- }
- for(int i=0; i<=2; i++)
- {
- system("cls");
- _sleep(500);
- cout<<"歡迎光臨";
- _sleep(500);
- }
- system("cls");
- _sleep(500);
- goto re;
- }
複製代碼 |