返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.       for(int c=0;c<=100;c+=5)
  6. {
  7.           if(c<10)
  8.           cout<<"  "<<c<<"% 完成 ";
  9.           else if(c>=10 && c<100)
  10.           cout<<"  "<<c<<"% 完成 ";
  11.           else
  12.           break;
  13.          _sleep(1000);
  14.          system("cls");   
  15.      }   
  16.       cout<<"100% 結束"<<endl;
  17.       system("pause");
  18.       return 0;
  19. }
複製代碼

TOP

返回列表