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

TOP

返回列表