返回列表 發帖

017_連續、跳躍與倒序計數

1. 連續計數:印出 1 ~ 10
2. 跳躍計數:印出 1、3、5、7、9
3. 倒序計數:印出 10 ~ 1

  1. #include <iostream>
  2. #include <cstdlib>

  3. using namespace std;

  4. int main ()
  5. {

  6. cout<<"連續計數"<<endl;

  7. for(int i=1;i<=10;i++)
  8. {
  9.         cout<<i<<endl;
  10. }
  11. cout<<"======================"<<endl;
  12. cout<<" 跳躍計數"<<endl;
  13. for(int j= 1;j<=9;j =j+2)
  14. {
  15.         cout<<j<<endl;
  16. }       
  17. cout<<"======================"<<endl;
  18. cout<<"倒序計數"<<endl;

  19. for(int k=10;k>=1;k=k-1)       
  20. {
  21.         cout<<k<<endl;
  22. }       

  23.        
  24.         system ("pause");
  25.         return 0;

  26. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         cout<<"連續計數:"<<endl;
  7.         for(int i=1;i<=10;i++)       
  8.         {
  9.                 cout<<i<<endl;
  10.         }       
  11.         cout<<"跳躍計數:"<<endl;       
  12.         for(int i=1;i<=9;i+=2)       
  13.         {
  14.                 cout<<i<<endl;
  15.         }               
  16.         cout<<"倒序計數:"<<endl;       
  17.         for(int i=10;i>=1;i--)       
  18.         {
  19.                 cout<<i<<endl;
  20.         }               
  21.         system ("pause");
  22.         return 0;
  23. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.         cout<<"連續計數:"<<endl;
  7.         for(int i=1; i<=10; i++)
  8.         {
  9.                 cout<<i<<endl;
  10.         }
  11.         cout<<"跳躍計數:"<<endl;
  12.         for(int i=1; i<=9; i+=2)
  13.         {
  14.                 cout<<i<<endl;
  15.         }
  16.         cout<<"倒序計數:"<<endl;
  17.         for(int i=10; i>=1; i--)
  18.         {
  19.                 cout<<i<<endl;
  20.         }
  21.        
  22.         system("pause");
  23.         return 0;
  24. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. main ()
  5. {
  6.         cout << "連續計數:" << endl;
  7.         for (int i = 1; i <= 10; i++)
  8.         {
  9.                 cout << i << endl;
  10.         }
  11.         cout << "跳躍計數" << endl;
  12.         for (int i = 1; i <= 9; i+=2)
  13.         {
  14.                 cout << i << endl;
  15.         }
  16.         cout << "倒序計數" << endl;
  17.         for (int i = 10; i >= 1; i--)
  18.         {
  19.                 cout << i << endl;
  20.         }
  21.         system("pause");
  22.         return 0;
  23. }
複製代碼

TOP

返回列表