返回列表 發帖
本帖最後由 陳柏霖 於 2018-12-7 20:12 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     for(int i=1; i<=6; i++)
  8.     {
  9.         if(i==1)
  10.         {
  11.             cout<<"㊣㊣㊣      ";
  12.         }
  13.         if(i==2)
  14.         {
  15.             cout<<"  ㊣㊣㊣    ";
  16.         }
  17.         if(i==3)
  18.         {
  19.             cout<<"    ㊣㊣㊣  ";
  20.         }
  21.         if(i==4)
  22.         {
  23.             cout<<"      ㊣㊣㊣";
  24.         }
  25.         if(i==5)
  26.         {
  27.             cout<<"    ㊣㊣㊣  ";
  28.         }
  29.         if(i==6)
  30.         {
  31.             cout<<"  ㊣㊣㊣    ";
  32.         }
  33.         _sleep(300);
  34.         system("cls");
  35.     }
  36.     goto re;
  37.     system("pause");
  38.     return 0;
  39. }
複製代碼

TOP

返回列表