If you execute the following code, what will it display if the user enters 15 18? 15 10? 9 7?
int teamWins, teamLosses;
cout << " Enter the number of team wins and number of team losses: ";
cin >> team Wins >> teamLosses;
if (teamWins > teamLosses)
{
if(teamWins > 10)
cout << "You are the champions. \n";
else
cout << "You have won more than 50% of your games. \n";
}
else
cout << "Good luck in the rest of your games. ";
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.