返回列表 發帖
  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

返回列表