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

TOP

返回列表