/
Inessa
/
Ine
Обзор
Документация
Войти
/
Inessa
/
Ine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
main.cpp
26 строк
447 B
Inessa
create main.cpp
15 мар 2025, 18:08
15 мар 2025, 18:08
5b21c76
Код
Авторство
О чём код?
#include<iostream> #include<string> int main() { std::string word{ "apple" }; std::string enteredWord{}; for (int counter{}; word != enteredWord; ++counter) { std::cout << "Guess the word: "; std::getline(std::cin >> std::ws, enteredWord); if (word == enteredWord) { std::cout << "Right! You've won! The hidden word is: " << word; break; } else { std::cout << "Wrong" << std::endl; } } }