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

TOP

返回列表