/
Puzzman
/
basic_programming
Обзор
Документация
Войти
/
Puzzman
/
basic_programming
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
homework_11_1/Main.cpp
17 строк
333 B
Puzzanis
refactor
10 сен 2024, 08:12
10 сен 2024, 08:12
4dd19f8
Код
Авторство
О чём код?
#include <iostream> #include <Windows.h> #include "GreeterStatic.h" int main() { setlocale(LC_ALL, "rus"); //setting the language standard SetConsoleCP(1251); GreeterStaticLib::Greeter hello{}; std::string name{}; std::cout << "������� ���: "; std::cin >> name; hello.greet(name); system("pause"); return EXIT_SUCCESS; }