本帖最後由 陳品肇 於 2019-4-13 13:42 編輯
由 0% 載入中 慢慢轉換為 15% 載入中.. 最後 100% 完成!
執行畫面如下
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int tmp;
- for(int i=1;i<=500;i++) //速度跑慢5倍
- {
- tmp = i/5;
- if(tmp>=1 && tmp<=9)
- {
- cout<<tmp<<"%載入中"<<endl;
- }
- if(tmp>=10 && tmp<=20)
- {
- cout<<tmp<<"%載入中"<<endl;
- }
- if(tmp>=21 && tmp<=40)
- {
- cout<<tmp<<"%載入中"<<endl;
- }
- if(tmp>=41 && tmp<=60)
- {
- cout<<tmp<<"%載入中"<<endl;
- }
- if(tmp>=61 && tmp<=80)
- {
- cout<<tmp<<"%載入中"<<endl;
- }
- if(tmp>=81 && tmp<=100)
- {
- cout<<tmp<<"%載入中"<<endl;
- }
- system("cls");
- }
-
-
- cout<<"100%完成!"<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |