C 學習005 迴圈

2021-07-16 13:26:51 字數 671 閱讀 3107

c++在迴圈方面,感覺個c沒有身邊麼區別

while迴圈

for迴圈

do while迴圈

其實 使用goto也可以寫個迴圈

編寫環境vs2015

1. while迴圈

int main()

std::cout << i;

} std::getchar();

return 0;

}

2. for 迴圈

int main()

std::cout << i;

} std::getchar();

return 0;

}

3. do while迴圈

int main()

while (i < 5);

std::getchar();

return 0;

}

4. 下面是使用goto語句實現

學習筆記 005

if condition then statement end if if condition then statements 1 else statements 2 end if if condition1 then statements 1 elseif condition2 then stat...

Python基礎005 while迴圈

在 python 語言中用來控制迴圈的主要有兩個句法,while和for語句,本講將簡單介紹while句法的使用。while 語句同其他程式語言中 while 的使用方式大同小異,注意condition不需要加括號,主要結構如下 while condition expressions其中condit...

005迴圈中的continue 和 break

一 for 和 while 迴圈中的continue breakfor i in range 2 print print continue print 執行結果如下 說明 當迴圈中執行到continue時,迴圈中接下來的 就不會執行,直接跳到下次迴圈 num 0while num 3 num 1pr...