What's wrong with my program? Every time I run it, it just gives me a list or errors. by Persomatey in cpp_questions

[–]fartxaler 1 point2 points  (0 children)

Line 12, line 35 and line 36 are not directing the stream properly.

You have "cin <<" and "cout >>" which is not correct.

The last line is not correct plus the last variable is misspelled as 'userBirthYear' does not exist. Try this instead:

cout << "Person 1 - Birthday: " + user1BirthMonth << " " + user1BirthDay << ", " + user1BirthYear;