/
monahov
/
learningcplusplus
Обзор
Документация
Войти
/
monahov
/
learningcplusplus
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Lesson 4.3.cpp
14 строк
313 B
monahov
upload files
17 июл 2025, 21:16
17 июл 2025, 21:16
988ef83
Код
Авторство
О чём код?
#include <iostream> int main() { setlocale(LC_ALL, "rus"); int number{}; std::cout << "Введите целое число: " << std::endl; std::cin >> number; for (int i{1}; i < 11; ++i) { std::cout << number << " x " << i << " = " << number * i << std::endl; } return EXIT_SUCCESS; }