返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int i = 0;
  7.         int tim = 30;
  8.         for(int p = 0;p<=49;p++)
  9.         {
  10.                 i = 0;
  11.                 while(i<=7)
  12.                 {
  13.                         i++;
  14.                         if(i==1)
  15.                         {
  16.                                 cout<<"*-------"<<endl;
  17.                                 _sleep(tim);
  18.                         }
  19.                         else if(i==2)
  20.                         {
  21.                                 cout<<"-*------"<<endl;
  22.                                 _sleep(tim);
  23.                         }
  24.                         else if(i==3)
  25.                         {
  26.                                 cout<<"--*-----"<<endl;
  27.                                 _sleep(tim);
  28.                         }
  29.                         else if(i==4)
  30.                         {
  31.                                 cout<<"---*----"<<endl;
  32.                                 _sleep(tim);
  33.                         }
  34.                         else if(i==5)
  35.                         {
  36.                                 cout<<"----*---"<<endl;
  37.                                 _sleep(tim);
  38.                         }
  39.                         else if(i==6)
  40.                         {
  41.                                 cout<<"-----*--"<<endl;
  42.                                 _sleep(tim);
  43.                         }
  44.                         else if(i==7)
  45.                         {
  46.                                 cout<<"------*-"<<endl;
  47.                                 _sleep(tim);
  48.                         }
  49.                         else
  50.                         {
  51.                                 cout<<"-------*"<<endl;
  52.                                 _sleep(tim);
  53.                         }
  54.                 }
  55.         }
  56.         system("pause");
  57.         return 0;
  58. }
複製代碼

TOP

返回列表