/
GapiGap
/
lesson_8.1
Обзор
Документация
Войти
/
GapiGap
/
lesson_8.1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
main.cpp
18 строк
323 B
GapiGap
upload files
02 июн 2025, 20:58
02 июн 2025, 20:58
9356366
Код
Авторство
О чём код?
#include<iostream> int index=1; void counting_function() { std::cout << "���������� ������� ������� counting_function(): " << index << std::endl; index++; } int main(int argc, char** argv) { setlocale(LC_ALL, "ru"); for (int i = 0; i < 15; i++) { counting_function(); } }