const string PALAVRA_SECRETA = "MELANCIA"; map<char, bool> chutou;
bool letra_existe (char chute){ for (char letra : PALAVRA_SECRETA){ if (chute == letra){ return true; } } return false; }
const string PALAVRA_SECRETA = "MELANCIA"; map<char, bool> chutou;
bool letra_existe (char chute){ for (char letra : PALAVRA_SECRETA){ if (chute == letra){ return true; } } return false; }
Tenta isso:
Vá em ferramentas -> Opções do compilador -> Aba "Compilador"
Deixar selecionado o checkbox "Adicionar os seguintes comandos quando chamar o compilador:" e adicionar o texto: "-std=c++11"
Caso não funcione: "-std=C++0x"