返回列表 發帖

[隨堂測驗] 跑馬燈 (二)

由 0% 載入中 慢慢轉換為 15% 載入中.. 最後 100% 完成!
執行畫面如下:



附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         for(int i=0;i<=100;i++)
  7.         {   
  8.             cout<<i<<"%";
  9.             if(i<10)
  10.             {
  11.                   cout<<"□□□□□□□□□□"<<endl;
  12.             }
  13.             if(i>=10&&i<20)
  14.             {
  15.                   cout<<"■□□□□□□□□□"<<endl;
  16.             }
  17.             if(i>=20&&i<30)
  18.             {
  19.                   cout<<"■■□□□□□□□□"<<endl;
  20.             }
  21.             if(i>=30&&i<40)
  22.             {
  23.                   cout<<"■■■□□□□□□□"<<endl;
  24.             }
  25.             if(i>=40&&i<50)
  26.             {
  27.                   cout<<"■■■■□□□□□□"<<endl;
  28.             }
  29.             if(i>=50&&i<60)
  30.             {
  31.                   cout<<"■■■■■□□□□□"<<endl;
  32.             }
  33.             if(i>=60&&i<70)
  34.             {
  35.                   cout<<"■■■■■■□□□□"<<endl;
  36.             }
  37.             if(i>=70&&i<80)
  38.             {
  39.                   cout<<"■■■■■■■□□□"<<endl;
  40.             }
  41.             if(i>=80&&i<90)
  42.             {
  43.                   cout<<"■■■■■■■■□□"<<endl;
  44.             }
  45.             if(i>=90&&i<100)
  46.             {
  47.                   cout<<"■■■■■■■■■□"<<endl;
  48.             }
  49.             if(i==100)
  50.             {
  51.                   cout<<"■■■■■■■■■■"<<endl;
  52.             }
  53.             _sleep(120);
  54.         }
  55.     return 0;
  56. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1;i<=100;i++)
  7.     {
  8.      
  9.      cout<<i<<"%"<<endl;
  10.      if(i<10)
  11.      cout<<"□□□□□□□□□";   
  12.      if(i>10&&i<11)
  13.      cout<<"■□□□□□□□□";
  14.      if(i>20&&i<21)
  15.      cout<<"■■□□□□□□□";
  16.      if(i>30&&i<31)
  17.      cout<<"■■■□□□□□□";
  18.      if(i>40&&i<41)
  19.      cout<<"■■■■□□□□□";
  20.      if(i>50&&i<51)
  21.      cout<<"■■■■■□□□□";
  22.      if(i>60&&i<61)
  23.      cout<<"■■■■■■□□□";
  24.      if(i>70&&i<71)
  25.      cout<<"■■■■■■■□□";
  26.      if(i>80&&i<81)
  27.      cout<<"■■■■■■■■□";
  28.      if(i>90&&i<91)
  29.      cout<<"■■■■■■■■■";
  30.      _sleep(120);  
  31.      system("cls");
  32.     }   
  33.     system("pause");
  34.     return 0;
  35. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     for(int i=1;i<=100;i++)
  8.     {
  9.        cout<<i<<"%";     
  10.        if(i<10)
  11.        {
  12.          cout<<"載入中"<<"□□□□□□□□□□"<<endl;         
  13.        }
  14.        if(i>10&&i>20)
  15.        {
  16.          cout<<"載入中"<<"■□□□□□□□□□"<<endl;     
  17.        }
  18.         if(i>20&&i>30)
  19.        {
  20.          cout<<"載入中"<<"■■□□□□□□□□"<<endl;      
  21.        }
  22.         if(i>30&&i>40)
  23.        {
  24.          cout<<"載入中"<<"■■■□□□□□□□"<<endl;      
  25.        }
  26.         if(i%10==5)
  27.        {
  28.          cout<<"載入中"<<"■■■■□□□□□□"<<endl;     
  29.        }
  30.         if(i%10==6)
  31.        {
  32.          cout<<"載入中"<<"■■■■■□□□□□"<<endl;     
  33.        }
  34.         if(i%10==7)
  35.        {
  36.          cout<<"載入中"<<"■■■■■■□□□□"<<endl;
  37.        }
  38.         if(i%10==8)
  39.        {
  40.          cout<<"載入中"<<"■■■■■■■□□□"<<endl;     
  41.        }
  42.         if(i%10==9)
  43.        {
  44.          cout<<"載入中"<<"■■■■■■■■□□"<<endl;     
  45.        }
  46.         if(i%10==0)
  47.        {
  48.          cout<<"載入中"<<"■■■■■■■■■□"<<endl;     
  49.        }
  50.        if(i==11)
  51.        {
  52.          cout<<"完成"<<"■■■■■■■■■■"<<endl;   
  53.        }
  54.        _sleep(120);
  55.        system("cls");
  56.     }
  57.     system("pause");
  58.     return 0;     
  59. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"☆★☆跑馬燈☆★☆"<<endl;
  8.     for(int i=0;i<=100;i++)
  9.        {
  10.     cout<<i<<"%";
  11.    
  12.     if(i<=0)   
  13.        cout<<"□□□□□□□□□□"<<endl;
  14.     if(i<=10 && i>10)
  15.        cout<<"■□□□□□□□□□"<<endl;
  16.     if(i<=10 && i>20)
  17.        cout<<"■■□□□□□□□□"<<endl;
  18.     if(i<=10 && i>30)
  19.        cout<<"■■■□□□□□□□"<<endl;
  20.     if(i<=10 && i>40)
  21.        cout<<"■■■■□□□□□□"<<endl;
  22.     if(i<=10 && i>50)
  23.        cout<<"■■■■■□□□□□"<<endl;
  24.     if(i<=10 && i>60)
  25.        cout<<"■■■■■■□□□□"<<endl;
  26.     if(i<=10 && i>60)
  27.        cout<<"■■■■■■■□□□"<<endl;
  28.     if(i<=10 && i>70)
  29.        cout<<"■■■■■■■■□□"<<endl;
  30.     if(i<=10 && i>80)
  31.        cout<<"■■■■■■■■■□"<<endl;
  32.     if(i<=10 && i>99)
  33.        cout<<"■■■■■■■■■■"<<endl;
  34.          _sleep(120);
  35.     system("cls");
  36.    }
  37.     system("pause");   
  38.     return 0;
  39. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    for(int i=0;i<=100;i++)
  7.    {
  8.      if(i<=0)      
  9.       cout<<i<<"%\t載入中  □□□□□□□□□□"<<endl;   
  10.      if(i<=10)      
  11.       cout<<i<<"%\t載入中  □□□□□□□□□□"<<endl;  
  12.      if(i<=20 && i>10)      
  13.       cout<<i<<"%\t載入中  ■□□□□□□□□□"<<endl;
  14.      if(i<=30 && i>20)      
  15.       cout<<i<<"%\t載入中  ■■□□□□□□□□"<<endl;
  16.      if(i<=40 && i>30)      
  17.       cout<<i<<"%\t載入中  ■■■□□□□□□□"<<endl;
  18.      if(i<=50 && i>40)      
  19.       cout<<i<<"%\t載入中  ■■■■□□□□□□"<<endl;
  20.      if(i<=60 && i>50)      
  21.       cout<<i<<"%\t載入中  ■■■■■□□□□□"<<endl;   
  22.      if(i<=70 && i>60)      
  23.       cout<<i<<"%\t載入中  ■■■■■■□□□□"<<endl;
  24.      if(i<=80 && i>70)      
  25.       cout<<i<<"%\t載入中  ■■■■■■■□□□"<<endl;  
  26.      if(i<=90 && i>80)      
  27.       cout<<i<<"%\t載入中  ■■■■■■■■□□"<<endl;
  28.      if(i<=99 && i>90)      
  29.       cout<<i<<"%\t載入中  ■■■■■■■■■□"<<endl;
  30.      if(i==100)
  31.       cout<<i<<"%\t完成!   ■■■■■■■■■■"<<endl;
  32.      _sleep(90);
  33.      if(i==100)
  34.      break;   
  35.      system("cls");   
  36.    }      
  37.    system("pause");   
  38.    return 0;
  39. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     while(true)
  7.     {
  8.         for(int i=0;i<=13;i++)
  9.         {
  10.                 cout<<i%<<endl;
  11.             if(i%10==0)
  12.             {
  13.                   cout<<"□□□□□□□□□□"<<endl;
  14.             }
  15.             if(i%10==1)
  16.             {
  17.                   cout<<"■□□□□□□□□□"<<endl;
  18.             }
  19.             if(i%10==2)
  20.             {
  21.                   cout<<"■■□□□□□□□□"<<endl;
  22.             }
  23.             if(i%10==3)
  24.             {
  25.                   cout<<"■■■□□□□□□□"<<endl;
  26.             }
  27.             if(i%10==4)
  28.             {
  29.                   cout<<"□■■■□□□□□□"<<endl;
  30.             }
  31.             if(i%10==5)
  32.             {
  33.                   cout<<"□□■■■□□□□□"<<endl;
  34.             }
  35.             if(i%10==6)
  36.             {
  37.                   cout<<"□□□■■■□□□□"<<endl;
  38.             }
  39.             if(i%10==7)
  40.             {
  41.                   cout<<"□□□□■■■□□□"<<endl;
  42.             }
  43.             if(i%10==8)
  44.             {
  45.                   cout<<"□□□□□■■■□□"<<endl;
  46.             }
  47.             if(i%10==9)
  48.             {
  49.                   cout<<"□□□□□□■■■□"<<endl;
  50.             }
  51.             if(i%10==0)
  52.             {
  53.                   cout<<"□□□□□□□■■■"<<endl;
  54.             }
  55.             if(i%10==11)
  56.             {
  57.                   cout<<"□□□□□□□□■■"<<endl;
  58.             }
  59.             if(i%10==12)
  60.             {
  61.                   cout<<"□□□□□□□□□■"<<endl;
  62.             }
  63.             if(i%10==13)
  64.             {
  65.                   cout<<"□□□□□□□□□□"<<endl;
  66.             }
  67.             _sleep(120);
  68.             system("cls");
  69.         }
  70.     }
  71.     system("pause");
  72.     return 0;
  73. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1;i<=100;i++)
  7.     {
  8.      
  9.      cout<<i<<"%"<<endl;
  10.      if(i<10)
  11.      cout<<"□□□□□□□□□";   
  12.      if(i>10&&i<11)
  13.      cout<<"■□□□□□□□□";
  14.      if(i>20&&i<21)
  15.      cout<<"■■□□□□□□□";
  16.      if(i>30&&i<31)
  17.      cout<<"■■■□□□□□□";
  18.      if(i>40&&i<41)
  19.      cout<<"■■■■□□□□□";
  20.      if(i>50&&i<51)
  21.      cout<<"■■■■■□□□□";
  22.      if(i>60&&i<61)
  23.      cout<<"■■■■■■□□□";
  24.      if(i>70&&i<71)
  25.      cout<<"■■■■■■■□□";
  26.      if(i>80&&i<81)
  27.      cout<<"■■■■■■■■□";
  28.      if(i>90&&i<91)
  29.      cout<<"■■■■■■■■■";
  30.      _sleep(120);  
  31.      system("cls");
  32.     }   
  33.     system("pause");
  34.     return 0;
  35. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1;i<=100;i++)
  7.     {
  8.        cout<<i<<"%";     
  9.        if(i<10)
  10.          cout<<"載入中"<<"□□□□□□□□□□"<<endl;         
  11.        if(i>10&&i<20)
  12.          cout<<"載入中"<<"■□□□□□□□□□"<<endl;     
  13.         if(i>20&&i<30)
  14.          cout<<"載入中"<<"■■□□□□□□□□"<<endl;            
  15.         if(i>30&&i<40)   
  16.          cout<<"載入中"<<"■■■□□□□□□□"<<endl;            
  17.         if(i>40&&i<50)      
  18.          cout<<"載入中"<<"■■■■□□□□□□"<<endl;         
  19.         if(i>50&&i<60)
  20.          cout<<"載入中"<<"■■■■■□□□□□"<<endl;     
  21.         if(i>60&&i<70)   
  22.          cout<<"載入中"<<"■■■■■■□□□□"<<endl;
  23.         if(i>70&&i<80)
  24.          cout<<"載入中"<<"■■■■■■■□□□"<<endl;     
  25.         if(i>80&&i<90)
  26.          cout<<"載入中"<<"■■■■■■■■□□"<<endl;     
  27.         if(i>90&&i<100)
  28.          cout<<"載入中"<<"■■■■■■■■■□"<<endl;     
  29.        if(i==100)
  30.          cout<<"完成"<<"■■■■■■■■■■"<<endl;   
  31.        _sleep(120);
  32.        system("cls");
  33.     }
  34.     system("pause");
  35.     return 0;     
  36. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=0;i<=21;i++)
  7.     {
  8.             if(i==1)
  9.             {
  10.                     cout<<"載入中  0%"<<endl;
  11.                     cout<<"□□□□□□□□□□□□□□□□□□□□";
  12.             }
  13.             if(i==2)
  14.             {
  15.                     cout<<"載入中  5%"<<endl;
  16.                     cout<<"■□□□□□□□□□□□□□□□□□□□";
  17.             }
  18.             if(i==3)
  19.             {
  20.                     cout<<"載入中  10%"<<endl;
  21.                     cout<<"■■□□□□□□□□□□□□□□□□□□";
  22.             }
  23.             if(i==4)
  24.             {
  25.                     cout<<"載入中  15%"<<endl;
  26.                     cout<<"■■■□□□□□□□□□□□□□□□□□";
  27.             }
  28.             if(i==5)
  29.             {
  30.                     cout<<"載入中  20%"<<endl;
  31.                     cout<<"■■■■□□□□□□□□□□□□□□□□";
  32.             }
  33.             if(i==6)
  34.             {
  35.                     cout<<"載入中  25%"<<endl;
  36.                     cout<<"■■■■■□□□□□□□□□□□□□□□";
  37.             }
  38.             if(i==7)
  39.             {
  40.                     cout<<"載入中  30%"<<endl;
  41.                     cout<<"■■■■■■□□□□□□□□□□□□□□";
  42.             }
  43.             if(i==8)
  44.             {
  45.                     cout<<"載入中  35%"<<endl;
  46.                     cout<<"■■■■■■■□□□□□□□□□□□□□";
  47.             }
  48.             if(i==9)
  49.             {
  50.                     cout<<"載入中  40%"<<endl;
  51.                     cout<<"■■■■■■■■□□□□□□□□□□□□";
  52.             }
  53.             if(i==10)
  54.             {
  55.                     cout<<"載入中  45%"<<endl;
  56.                     cout<<"■■■■■■■■■□□□□□□□□□□□";
  57.             }
  58.             if(i==11)
  59.             {
  60.                     cout<<"載入中  50%"<<endl;
  61.                     cout<<"■■■■■■■■■■□□□□□□□□□□";
  62.             }
  63.             if(i==12)
  64.             {
  65.                     cout<<"載入中  55%"<<endl;
  66.                     cout<<"■■■■■■■■■■■□□□□□□□□□";
  67.             }
  68.             if(i==13)
  69.             {
  70.                     cout<<"載入中  60%"<<endl;
  71.                     cout<<"■■■■■■■■■■■■□□□□□□□□";
  72.             }
  73.             if(i==14)
  74.             {
  75.                     cout<<"載入中  65%"<<endl;
  76.                     cout<<"■■■■■■■■■■■■■□□□□□□□";
  77.             }
  78.             if(i==15)
  79.             {
  80.                     cout<<"載入中  70%"<<endl;
  81.                     cout<<"■■■■■■■■■■■■■■□□□□□□";
  82.             }
  83.             if(i==16)
  84.             {
  85.                     cout<<"載入中  75%"<<endl;
  86.                     cout<<"■■■■■■■■■■■■■■■□□□□□";
  87.             }
  88.             if(i==17)
  89.             {
  90.                     cout<<"載入中  80%"<<endl;
  91.                     cout<<"■■■■■■■■■■■■■■■■□□□□";
  92.             }
  93.             if(i==18)
  94.             {
  95.                     cout<<"載入中  85%"<<endl;
  96.                     cout<<"■■■■■■■■■■■■■■■■■□□□";
  97.             }
  98.             if(i==19)
  99.             {
  100.                     cout<<"載入中  90%"<<endl;
  101.                     cout<<"■■■■■■■■■■■■■■■■■■□□";
  102.             }
  103.             if(i==20)
  104.             {
  105.                     cout<<"載入中  95%"<<endl;
  106.                     cout<<"■■■■■■■■■■■■■■■■■■■□";
  107.             }
  108.             if(i==21)
  109.             {
  110.                     cout<<"完成  100%"<<endl;
  111.                     cout<<"■■■■■■■■■■■■■■■■■■■■";
  112.             }
  113.             _sleep(500);
  114.             system("cls");
  115.     }
  116.     system("pause");   
  117.     return 0;
  118. }
複製代碼

TOP

返回列表