Board logo

標題: 跑馬燈 (二) [打印本頁]

作者: tonyh    時間: 2013-9-7 15:18     標題: 跑馬燈 (二)

本帖最後由 tonyh 於 2013-9-7 15:20 編輯

以5倍的速度放慢
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int j=0;
  7.     for(int i=1;i<=500;i++)
  8.     {
  9.         if(i%5==0)
  10.             j++;
  11.         cout<<j<<"%"<<endl;
  12.         system("cls");   
  13.     }   
  14.     cout<<"100% 完成!"<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {
  8.          cout<<i/5<<"%"<<endl;
  9.          system("cls");
  10.     }
  11.     cout<<"完成!"<<endl;
  12.     system("pause");
  13.     return 0;  
  14. }
複製代碼

作者: 許逸群    時間: 2013-9-7 15:19

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=500; i++)
  7.     {
  8.          cout<<i/5<<"%"<<endl;
  9.          system("cls");
  10.     }
  11.     cout<<"完成!"<<endl;
  12.     system("pause");
  13.     return 0;  
  14. }
複製代碼

作者: 劉泳鱔    時間: 2013-9-7 15:19

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int j=0;
  7.     for(int i=1;i<=500;i++)
  8.     {
  9.         if(i%5==0)
  10.             j++;
  11.         cout<<j<<"%"<<endl;
  12.         system("cls");   
  13.     }   
  14.     cout<<"100% 完成!"<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 鎧言    時間: 2013-9-7 15:20

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int j=0;
  7.     for(int i=1;i<=500;i++)
  8.     {
  9.         if(i%5==0)
  10.             j++;
  11.         cout<<j<<"%"<<endl;
  12.         system("cls");   
  13.     }   
  14.     cout<<"100% 完成!"<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 蘇昱安    時間: 2013-9-7 15:20

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int j=0;
  7.     for(int i=1;i<=500;i++)
  8.     {
  9.         if(i%5==0)
  10.             j++;
  11.         cout<<j<<"%"<<endl;
  12.         system("cls");   
  13.     }   
  14.     cout<<"100% 完成!"<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 劉得旗    時間: 2013-9-7 15:21

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int j=0;
  7.     for(int i=1;i<=500;i++)
  8.     {
  9.         if(i%5==0)
  10.             j++;
  11.         cout<<j<<"%"<<endl;
  12.         system("cls");   
  13.     }   
  14.     cout<<"100% 完成!"<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 林以諾    時間: 2013-9-7 15:25

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int j=0;
  7.     for(int i=1;i<=500;i++)
  8.     {
  9.         if(i%5==0)
  10.             j++;
  11.         cout<<j<<"%"<<endl;
  12.         system("cls");   
  13.     }   
  14.     cout<<"100% 完成!"<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 張瀚仁    時間: 2013-9-7 15:25

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1;i<=500;i++)
  7.     {
  8.         cout<<i/5<<"%"<<endl;
  9.         system("cls");   
  10.     }   
  11.     cout<<i/5<<"完成!";
  12. }
複製代碼

作者: 黃柏維    時間: 2013-9-7 15:25

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int j=0;   
  7. for(int i=0;i<=500;i++)
  8. {
  9.       if(i%5==0)
  10.       j++;   
  11.       cout<<j<<"%"<<endl;
  12.       system("cls");
  13. }  
  14. cout<<j<<"完成"<<endl;   
  15. system("pause");   
  16. return 0;   
  17. }
複製代碼

作者: 郭凡瑛    時間: 2013-9-7 15:25

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int j=0;
  7.     for(int i=1;i<=500;i++)
  8.     {
  9.         if(i%5==0)
  10.             j++;
  11.         cout<<j<<"%"<<endl;
  12.         system("cls");   
  13.     }   
  14.     cout<<"100% 完成!"<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 黃崇維    時間: 2013-9-7 15:29

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int j=0;
  7.     for(int i=1;i<=500;i++)
  8.     {
  9.         if(i%5==0)
  10.             j++;
  11.         cout<<j<<"%"<<endl;
  12.         system("cls");   
  13.     }   
  14.     cout<<"100% 完成!"<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2