Board logo

標題: [作業] 跑馬燈 (二) [打印本頁]

作者: tonyh    時間: 2014-3-22 18:06     標題: [作業] 跑馬燈 (二)

本帖最後由 tonyh 於 2014-3-29 16:39 編輯

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

[attach]859[/attach]
[attach]860[/attach]
[attach]861[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {
  8.          if(i/5>=1 && i/5<=9)     
  9.              cout<<"  "<<i/5<<"% 載入中.";
  10.          if(i/5>=10 && i/5<=20)     
  11.              cout<<" "<<i/5<<"% 載入中.";
  12.          if(i/5>=21 && i/5<=40)
  13.              cout<<" "<<i/5<<"% 載入中..";
  14.          if(i/5>=41 && i/5<=60)
  15.              cout<<" "<<i/5<<"% 載入中...";
  16.          if(i/5>=61 && i/5<=80)
  17.              cout<<" "<<i/5<<"% 載入中....";
  18.          if(i/5>=81 && i/5<=100)
  19.              cout<<" "<<i/5<<"% 載入中.....";
  20.          system("cls");
  21.     }
  22.     cout<<"100% 完成!"<<endl;            
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

作者: 張郁偵    時間: 2014-3-22 18:25

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {         
  8.           cout<<i/5<<"%"<<endl;
  9.           system("cls");
  10.     }     
  11.     cout<<"100%完成!"<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 張峻瑋    時間: 2014-3-22 18:28

本帖最後由 張峻瑋 於 2014-3-29 16:44 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1;i<=500;i++)
  7.     {
  8.         if(i>=1 && i<=50)
  9.             cout<<"  "<<i/5<<"% 載入中 ▋";
  10.         if(i>=51 && i<=100)
  11.             cout<<" "<<i/5<<"% 載入中 ▋▋"<<endl;
  12.         if(i>=101 && i<=150)
  13.             cout<<" "<<i/5<<"% 載入中 ▋▋▋"<<endl;
  14.         if(i>=151 && i<=200)
  15.             cout<<" "<<i/5<<"% 載入中 ▋▋▋▋"<<endl;
  16.         if(i>=201 && i<=250)
  17.             cout<<" "<<i/5<<"% 載入中 ▋▋▋▋▋"<<endl;
  18.         if(i>=251 && i<=300)
  19.             cout<<" "<<i/5<<"% 載入中 ▋▋▋▋▋▋"<<endl;
  20.         if(i>=301 && i<=350)
  21.             cout<<" "<<i/5<<"% 載入中 ▋▋▋▋▋▋▋"<<endl;
  22.         if(i>=351 && i<=400)
  23.             cout<<" "<<i/5<<"% 載入中 ▋▋▋▋▋▋▋▋"<<endl;
  24.         if(i>=401 && i<=450)
  25.             cout<<" "<<i/5<<"% 載入中 ▋▋▋▋▋▋▋▋▋"<<endl;   
  26.         if(i>=451 && i<=500)
  27.             cout<<" "<<i/5<<"% 載入中 ▋▋▋▋▋▋▋▋▋▋"<<endl;            
  28.         system("cls");
  29.     }
  30.         cout<<"100% 完成!"<<endl;               
  31.     system("pause");
  32.     return 0;
  33. }
複製代碼

作者: 張郁庭    時間: 2014-3-22 18:28

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=2000; i++)
  7.     {
  8.             cout<<i/20<<"% 載入中"<<endl;
  9.             system("cls");
  10.     }
  11.     cout<<"100%完成"<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 施伯叡    時間: 2014-3-29 13:11

本帖最後由 施伯叡 於 2014-3-29 16:41 編輯

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    for(int i=1; i<=500; i++)
    {
         if(i/5>=1 && i/5<=20)     
             cout<<"  "<<i/5<<"% 載入中.";
         if(i/5>=21 && i/5<=40)
             cout<<" "<<i/5<<"% 載入中..";
         if(i/5>=41 && i/5<=60)
             cout<<" "<<i/5<<"% 載入中...";
         if(i/5>=61 && i/5<=80)
             cout<<" "<<i/5<<"% 載入中....";
         if(i/5>=81 && i/5<=100)
             cout<<" "<<i/5<<"% 載入中.....";
         system("cls");
    }
    cout<<"100% 完成..."<<endl;            
    system("pause");
    return 0;
}
作者: 周雍程    時間: 2014-3-29 15:41

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {         
  8.           cout<<i/5<<"%"<<endl;
  9.           system("cls");
  10.     }     
  11.     cout<<"100%完成!"<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 劉得旗    時間: 2014-3-29 16:06

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {         
  8.           cout<<i/5<<"%"<<endl;
  9.           system("cls");
  10.     }     
  11.     cout<<"100%完成!"<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 張郁偵    時間: 2014-3-29 16:49

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {      
  8.           if(i/5>=1 && i/5<=20)
  9.                cout<<i/5<<"%載入中<";
  10.           if(i/5>=21 && i/5<=40)
  11.                cout<<i/5<<"%載入中< <";
  12.           if(i/5>=41 && i/5<=60)
  13.                cout<<i/5<<"%載入中< < <";
  14.           if(i/5>=61 && i/5<=80)
  15.                cout<<i/5<<"%載入中< < < <";
  16.           if(i/5>=81 && i/5<=100)
  17.                cout<<i/5<<"%載入中< < < < <";           
  18.           system("cls");
  19.     }     
  20.     cout<<"100%完成!"<<endl;
  21.     system("pause");
  22.     return 0;
  23. }
複製代碼

作者: 張彥承    時間: 2014-3-29 16:51

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.        for(int i=1; i<=500; i++)

  7.     {         

  8.           cout<<i/5<<"%"<<endl;

  9.           system("cls");

  10.     }     

  11.     cout<<"100%完成!"<<endl;     
  12. system("pause");   
  13. return 0;   
  14. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2