返回列表 發帖

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

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表