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

TOP

返回列表