返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       int speed=100;
  7.       for(int i=1; i<=100; i++){
  8.        cout<<" "<<i<<"% 載入中 ";
  9.        for(int j=1; j<=i%6; j++){
  10.        if(j==1)
  11.            cout<<".";
  12.        if(j==2)
  13.            cout<<".";
  14.        if(j==3)
  15.            cout<<".";
  16.        if(j==4)
  17.            cout<<".";
  18.        if(j==5)
  19.            cout<<".";
  20.          _sleep(speed);  
  21.        }
  22.       
  23.        system("cls");
  24. }
  25.    cout<<" 100% 完成!"<<endl;
  26.    system("pause");
  27.    return 0;
  28. }
複製代碼

TOP

返回列表