本帖最後由 tonyh 於 2013-9-7 15:20 編輯
以5倍的速度放慢- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int j=0;
- for(int i=1;i<=500;i++)
- {
- if(i%5==0)
- j++;
- cout<<j<<"%"<<endl;
- system("cls");
- }
- cout<<"100% 完成!"<<endl;
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- for(int i=1; i<=500; i++)
- {
- cout<<i/5<<"%"<<endl;
- system("cls");
- }
- cout<<"完成!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |