Question: Hi Is below Java code a contructor or method? Can you plaease also comment the below code, and explain what the code does. Thanks! public

Hi Is below Java code a contructor or method? Can you plaease also comment the below code, and explain what the code does. Thanks! public void startGame(){
Player currentPlayer = player1;
while (sticks >1){
System.out.println("Remaining matches: "+ sticks);
int takenSticks = currentPlayer.makeMove(sticks);
sticks -= takenSticks;
if (sticks <=1){
System.out.println("No moves left. "+ currentPlayer.name +" wins!");
break;
}
currentPlayer =(currentPlayer == player1)? player2 : player1;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!