返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     re:
  8.     int speed=50;
  9.     srand(time(NULL));
  10.     for(int i=1; i<=10; i++)
  11.     {
  12.     system("cls");
  13.     if(i==1)
  14.         cout<<"■□□□□□□□□□"<<endl;
  15.     if(i==2)
  16.         cout<<"■■□□□□□□□□"<<endl;
  17.     if(i==3)
  18.         cout<<"■■■□□□□□□□"<<endl;
  19.     if(i==4)
  20.         cout<<"□■■■□□□□□□"<<endl;
  21.     if(i==5)
  22.         cout<<"□□■■■□□□□□"<<endl;
  23.     if(i==6)
  24.         cout<<"□□□■■■□□□□"<<endl;
  25.     if(i==7)
  26.         cout<<"□□□□■■■□□□"<<endl;
  27.     if(i==8)
  28.         cout<<"□□□□□■■■□□"<<endl;
  29.     if(i==9)
  30.         cout<<"□□□□□□■■■□"<<endl;
  31.     if(i==10)
  32.         cout<<"□□□□□□□■■■"<<endl;
  33.     _sleep(speed);
  34.     }
  35.     goto re;
  36.     system("pause");
  37.     return 0;
  38. }
複製代碼

TOP

返回列表