- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- int j=0;
- for(int i=1; i<=100; i++)
- {
- if(i%5==0)
- j++;
- cout<<"新";
- for(int i=1; i<=j; i++)
- {
- cout<<" ";
- }
- cout<<"年";
- for(int i=1; i<=j; i++)
- {
- cout<<" ";
- }
- cout<<"快";
- for(int i=1; i<=j; i++)
- {
- cout<<" ";
- }
- cout<<"樂";
- system("cls");
- }
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |