#include using namespace std; int main() { char answer; int maleScore = 0; int femaleScore = 0; cout << "Answer Y or N\n"; cout << "1. Do you prefer sports? "; cin >> answer; if (answer == 'Y' || answer == 'y') maleScore++; else femaleScore++; cout << "2. Do you like shopping? "; cin >> answer; if (answer == 'Y' || answer == 'y') femaleScore++; else maleScore++; cout << "3. Do you enjoy fixing things? "; cin >> answer; if (answer == 'Y' || answer == 'y') maleScore++; else femaleScore++; cout << "4. Do you enjoy fashion? "; cin >> answer; if (answer == 'Y' || answer == 'y') femaleScore++; else maleScore++; cout << "\nResult: "; if (maleScore > femaleScore) cout << "Male\n"; else cout << "Female\n"; return EXIT_SUCCESS; }