/
monahov
/
learningcplusplus
Обзор
Документация
Войти
/
monahov
/
learningcplusplus
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Lesson 11.2.cpp
22 строки
524 B
monahov
upload files
28 авг 2025, 21:19
28 авг 2025, 21:19
208287a
Код
Авторство
О чём код?
#include <iostream> #include <string> int main() { setlocale(LC_ALL, "Russian"); std::string secretSword{ "apple" }; std::string inputSword{}; while (true) { std::cout << "Угадайте слово: "; getline(std::cin, inputSword); if (inputSword == secretSword) { break; } std::cout << "Неправильно" << std::endl; } std::cout << "Правильно! Вы победили! Загаданное слово - " << secretSword << std::endl; return EXIT_SUCCESS; }