Question: Two players have completed a game. Write a method (or function) named whoWon to determine the winner! whoWon receives three parameters in the following

Two players have completed a game. Write a method (or function) named whoWon to determine the winner! whoWon receives three parameters in the following order: the score of the first player as an int, the score of the second player as an int, and whether the first player played first as a boolean. If either player scored more points than the other, they are the winner! However, if both players tie, then the player that played second is the winner. Return the result of the game as an int. You should return 1 if Player 1 won and 2 if Player 2 won.
Step by Step Solution
3.40 Rating (153 Votes )
There are 3 Steps involved in it
Here is the answer for your question in Java Programming Language CODE public class WinnerMain metho... View full answer
Get step-by-step solutions from verified subject matter experts
