#include <iostream>
#include <string>
#include <map>
using namespace std;
const string PALAVRA_SECRETA = "MELANCIA ";
char chute;
map <char, bool> chutou; //mapa dos chutes inputados
bool letra_existe (chute){
for (char letra : PALAVRA_SECRETA){ //itera cada letra da palavra secreta
if (chute == letra){
return true;
}
}
return false;
}
int main (){
bool nao_enforcou = true;
bool nao_acertou = true;
while (nao_acertou && nao_enforcou){
cout << "Escolha uma letra." << endl;
cin >> chute;
if (letra_existe){
chutou [chute] = true;
}
for (char letra : PALAVRA_SECRETA){
if (chutou [letra]){
cout << letra << " ";
}else {
cout << "_ ";
}
}
}
}