返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     for(int i=1;i<=100;i++)
  8.     {
  9.         if(i<=50)
  10.         {
  11.             for(int a=1;a<=i;a++)
  12.             {   
  13.                 cout<<" ";
  14.             }
  15.         }else
  16.         {
  17.             for(int j=100;j>=i;j--)
  18.             {
  19.                 cout<<" ";
  20.             }
  21.         }
  22.         cout<<"來鴨~~~~~~"<<endl;
  23.         _sleep(40);
  24.         system("cls");   
  25.     }
  26.     goto re;   
  27.     system("pause");
  28.     return 0;
  29. }
複製代碼

TOP

返回列表