- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int speed=1000;
- for(int x=5; x>=1; x--)
- {
- if(x==5)
- cout<<"5!"<<endl;
- if(x==4)
- cout<<"4!"<<endl;
- if(x==3)
- cout<<"3!"<<endl;
- if(x==2)
- cout<<"2!"<<endl;
- if(x==1)
- cout<<"1!"<<endl;
- _sleep(speed);
- system("cls");
- }
- for(int y=1; y<=time(NULL); y++)
- {
- cout<<"★☆★!!!新年快樂!!!★☆★"<<endl;
- _sleep(speed);
- system("cls");
- cout<<"☆★☆!!!Happy New Year!!!☆★☆"<<endl;
- _sleep(speed);
- system("cls");
- }
- system("pause");
- return 0;
- }
複製代碼 |