Board logo

標題: while 迴圈(二) [打印本頁]

作者: 歐柏罕    時間: 2017-12-16 14:09     標題: 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. }
複製代碼

作者: 康紘嘉    時間: 2017-12-16 14:09

  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;
複製代碼

作者: 吳秉翰    時間: 2017-12-16 14:09

  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. }
複製代碼

作者: 林峻安    時間: 2017-12-16 14:09

  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. }
複製代碼

作者: 王駿愷    時間: 2017-12-16 14:11

  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. }
複製代碼

作者: 湯東緯    時間: 2017-12-16 14:12

  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;
複製代碼





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