Зміст курсу
Знайомство з C++
Знайомство з C++
3. Знайомство з Операторами
4. Знайомство з Потоком Програми
5. Знайомство з Функціями
Цикл For
Цикл for складніший за інші цикли і складається з трьох частин. Структура циклу for:
- Лічильник;
- Умова виходу;
- Вираз циклу.
main
#include <iostream> int main() { for (int counter = 0; counter <= 5; counter++) { std::cout << counter << std::endl; } }
int counter = 0
: iteration counter;counter++
: For each iteration, 1 will be added to thecounter
variable to mark the passage of the loop;counter <= 5
: loop termination condition. The loop will continue if thecounter
variable is less than or equal to 5.
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 4. Розділ 6