返回列表 發帖

while 迴圈(二)

印出2~100所有2的倍數
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int count=0;
  7.    
  8.     while(count <= 100)//條件,條件成立才會進入迴圈
  9.     {
  10.            count=count+2;
  11.            cout << count << endl;           
  12.     }
  13.    
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表