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

TOP

返回列表