Если я ввожу "fine" или "bad" он пишет оба условия (и fine, и bad). с остальным вроде разобралась. #include ; using namespace std; int main() { string name; cout < < "what is your name? "; cin > > name; cout < < "hello, " < < name < < endl; cout < < "how are you? "; string good; string fine; string bad; string mood; cin > > mood; if (mood == "good"||"good") { cout < < "okay, so do you mind to play with me? "; } if (mood == "fine"||"fine") { cout < < "i don't wanna annoy you but do you mind playing with me? "; } if (mood == "bad"||"bad") { cout < < "oh, what happened? can i help you? do you mind playing with me? it's really fun. you'll like it"; } return 0; }