返回列表 發帖
  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<10)
  9.             cout<<"  "<<i<<"% 載入中";
  10.         else
  11.             cout<<" "<<i<<"% 載入中";
  12.          for(int j=0; j<i%7; j++)
  13.               cout<<".";
  14.         _sleep(90);
  15.         system("cls");     
  16.     }
  17.     cout<<"100% 完成!"<<endl;
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

返回列表