I am able to loop the program, but each time I input a value it will return 2 values, the user winning and the user losing. I've experimented using multiple methods and creating a new class which was the tester, but had some problems figuring out the logic. As for loops, I have tried using a for loop, while, and do while. Thanks in advance! // Rock Paper Scissor Shoot Game import java.util.Random; import java.util.Scanner; public class RockPaperSciccor { public static void main(String[] args){ int wins = 0; int losses = 0; int rnd; for(rnd=0;rnd<=10;rnd++) { Random GAME = new Random(); int PC = 1+GAME.nextInt(3); Scanner input = new Scanner (System.in); int SCISSOR, ROCK, PAPER; SCISSOR = 1; ROCK = 2; PAPER = 3; System.out.println(""); System.out.println("Choose Your Weapon! "); System.out.println("1 = Scissor| 2 = Rock| 3 = Paper"); System.out.println(""); int USER ...