/
monahov
/
learningcplusplus
Обзор
Документация
Войти
/
monahov
/
learningcplusplus
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Lesson 8.1.cpp
20 строк
311 B
monahov
upload files
01 авг 2025, 08:47
01 авг 2025, 08:47
6e9bd5f
Код
Авторство
О чём код?
#include <iostream> void counting_function(); int main(int argc, char** argv) { for (int i = 0; i < 15; i++) { counting_function(); } return EXIT_SUCCESS; } void counting_function() { static int count = 0; count++; std::cout << count << std::endl; }