- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- for(int i=5; i>=1; i++)
- {
- cout<<i<<"!"<<endl;
- _sleep(1000);
- system("cls");
- }
- while(true)
- {
- cout<<"~~~ Happy New Year ~~~"<<endl;
- _sleep(1000);
- system("cls");
- cout<<"~~~ Happy New Year ~~~"<<endl;
- _sleep(1000);
- system("cls");
- }
- system("pause");
- return 0;
- }
複製代碼 |