you will write the code segment for the body of the method getplayer2move, which returns the number of coins that player 2 will spend in a given round of the game. in the first round of the game, the parameter round has the value 1, in the second round of the game, it has the value 2, and so on. the method returns 1, 2, or 3 based on the following rules. if round is divisible by 3, then return 3. if round is not divisible by 3 but is divisible by 2, then return 2. if round is not divisible by 3 and is not divisible by 2, then return 1.