omg lol im tired of this error msg. Can someone tell me what to do to avoid it plz? In almost every program I try to make, It is an error. Btw, It is alm always on the "{" thingy. The error is on line 15, but this is only an ex. program, in many more it does this. Tysm in advance
#include <iostream>
std::string answer;
usingnamespace std;
int main()
{
cout<< "are you dumb or smart?";
cin>> answer;
if (answer == "dumb")
std::cout<< "I completely agree";
else
cout<<"good to hear";
}
string answar;
{ ***
cout<< "If given a, b, or c, what is your favorite letter?";
cin>>answar;
if (answar == "c")
cout<< "the word catastrophe starts with that letter.";
elseif (answar == "b")
cout<< "the word bactericide starts with that letter";
else
cout<< "The word apostraphe starts with that letter";
}