返回列表 發帖

[作業] 跑馬燈 (二)

本帖最後由 陳品肇 於 2019-4-13 13:42 編輯

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

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int tmp;
  7.     for(int i=1;i<=500;i++)  //速度跑慢5倍
  8.     {
  9.          tmp = i/5;
  10.         if(tmp>=1 && tmp<=9)
  11.         {
  12.            cout<<tmp<<"%載入中"<<endl;
  13.         }
  14.         if(tmp>=10 && tmp<=20)
  15.         {
  16.            cout<<tmp<<"%載入中"<<endl;
  17.         }
  18.         if(tmp>=21 && tmp<=40)
  19.         {
  20.            cout<<tmp<<"%載入中"<<endl;
  21.         }
  22.         if(tmp>=41 && tmp<=60)
  23.         {
  24.            cout<<tmp<<"%載入中"<<endl;
  25.         }
  26.         if(tmp>=61 && tmp<=80)
  27.         {
  28.            cout<<tmp<<"%載入中"<<endl;
  29.         }
  30.         if(tmp>=81 && tmp<=100)
  31.         {
  32.            cout<<tmp<<"%載入中"<<endl;
  33.         }
  34.         system("cls");
  35.     }
  36.    
  37.    
  38.     cout<<"100%完成!"<<endl<<endl;

  39.     system("pause");
  40.     return 0;
  41. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表