返回列表 發帖

while 迴圈

本帖最後由 tonyh 於 2011-10-15 16:41 編輯

利用while迴圈, 列出100~200間所有2的倍數.
本帖隱藏的內容需要回復才可以瀏覽

本帖最後由 t3742238 於 2011-10-15 16:28 編輯
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.          int i=100;
  6.          while(i<=200)
  7.          {
  8.                       cout<<i<<endl;
  9.                       i+=2;
  10.          }
  11.          cout<<endl;   
  12.    system("pause");   
  13.    return 0;      

  14. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int i=100;
  6. while(i>=200)
  7. {
  8. cout<<i<<endl;
  9. i++;
  10. }
  11. cout<<endl;   
  12. system("pause");   
  13. return 0;      
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   int i=100;
  6.   while(i<=200)
  7.   {
  8.         cout<<i<<endl;
  9.         i+=2;
  10.     }
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int i=100;
  6.     while (i<=200)
  7.     {
  8.           cout<<i<<endl;
  9.           i+=2;
  10.     }
  11.    
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.      int i=100;
  6.      int y=200;
  7.      while(i<=200)
  8.      {
  9.         cout<<i<<endl;
  10.         i+=2 ;        
  11.      }
  12.      
  13.      for(int i=100; i<=200; i+=2)
  14.      {
  15.          cout<<i<<endl;
  16.      }
  17.      
  18.      
  19.      
  20.      
  21.      
  22. system("pause");
  23. return 0;     
  24.       
  25. }
複製代碼

TOP

本帖最後由 t2364705 於 2011-10-15 16:40 編輯
  1. #include<iostream>
  2. using namespace std ;
  3. int main()
  4. {
  5.      int i=100;
  6.      int j=200;
  7.      while (i<=200)
  8.      {
  9.      cout<<i<<endl;
  10.      i+=2;
  11.      }
  12.      for(int i=202; i<=300; i+=2)
  13.      {
  14.      cout<<i<<endl;
  15.      }
  16.      system("pause");
  17.      return 0;
  18. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.      int i=100;
  6.     while(i<=200)
  7.      {
  8.         cout<<i<<endl;
  9.         i+=2 ;        
  10.      }
  11.      
  12.      for(int i=202; i<=300; i+=2)
  13.      {
  14.          cout<<i<<endl;
  15.      }
  16.      
  17.      
  18.      
  19.      
  20.      
  21. system("pause");
  22. return 0;     
  23.       
  24. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std ;
  3. int main()
  4. {
  5.      int i=100;
  6.      int j=200;
  7.      while (i<=200)
  8.      {
  9.      cout<<i<<endl;
  10.      i+=2;
  11.      }
  12.      for(int i=202; i<=300; i+=2)
  13.      {
  14.      cout<<i<<endl;
  15.      }
  16.      system("pause");
  17.      return 0;
  18. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int i=100;
  6.    while(i<=200)
  7.          {
  8.                       cout<<i<<endl;
  9.                       i+=2;
  10.          }
  11.    for(i=202;i<302;i+=2)
  12.          {
  13.                        cout<<i<<endl;
  14.          }
  15.          
  16.    cout<<endl;   
  17.    system("pause");   
  18.    return 0;      

  19. }
複製代碼

TOP

  1. #include <iostream>

  2. using namespace std;

  3. int main()

  4. {

  5. int i=100;

  6. while(i>=200)

  7. {

  8. cout<<i<<endl;

  9. i++;

  10. }

  11. cout<<endl;   

  12. system("pause");   

  13. return 0;      

  14. }
複製代碼

TOP

返回列表