返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int speed=500;

  7.    for(int i=1; i<=100; i++){
  8.            
  9.          
  10.                   
  11.        if(i%5==0)
  12.            cout<<i<<"%載入中....."<<endl;
  13.          
  14.        else if(i%5==1)
  15.            cout<<i<<"%載入中."<<endl;
  16.        else if(i%5==2)
  17.            cout<<i<<"%載入中.."<<endl;
  18.        else if(i%5==3)
  19.            cout<<i<<"%載入中..."<<endl;
  20.        else if(i%5==4)
  21.            cout<<i<<"%載入中...."<<endl;
  22.      
  23.        _sleep(speed);
  24.        system("cls");
  25.       
  26.    }
  27.   
  28.    system("pause");   
  29.    return 0;
  30. }
複製代碼

TOP

返回列表