- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- for(int i=1; i<=500; i++)
- {
- if(i/5>=1 && i/5<=20)
- cout<<i/5<<"%載入中<";
- if(i/5>=21 && i/5<=40)
- cout<<i/5<<"%載入中< <";
- if(i/5>=41 && i/5<=60)
- cout<<i/5<<"%載入中< < <";
- if(i/5>=61 && i/5<=80)
- cout<<i/5<<"%載入中< < < <";
- if(i/5>=81 && i/5<=100)
- cout<<i/5<<"%載入中< < < < <";
- system("cls");
- }
- cout<<"100%完成!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |