You’ll need to implement a method called String getWinner(String user, String computer) that determines whether the user or computer won the game, and return the correct winner!

Respuesta :

Answer:

The solution code is written in Java.

  1. String getWinner(String user, String computer) {
  2.        if(status == x) {
  3.            return user;
  4.        }
  5.        else {
  6.            return computer;
  7.        }
  8.    }
  9. String winner = getWinner("User_X", "Comp_X");

Explanation:

A method getWinner() that take two parameters, user and computer, is written (Line 1 - 8). This method presumes that there is a global variable, status. This status variable holds the value that will decide if method should return either user or computer name as winner (Line 3, 5).

Line 10 shows a statement that implement the getWinner() method.