Punktestand hinzugefügt
This commit is contained in:
parent
690fcb36e0
commit
709c0efe05
@ -1,6 +1,6 @@
|
||||
public class GameClass {
|
||||
|
||||
public static void main(String[] args){
|
||||
while (RockPaperScissors.playerScore < 7 ) RockPaperScissors.runGame();
|
||||
while (RockPaperScissors.playerScore < 7 && RockPaperScissors.computerScore < 7) RockPaperScissors.runGame();
|
||||
}
|
||||
}
|
||||
|
@ -77,7 +77,7 @@ public class RockPaperScissors {
|
||||
|
||||
public static int letComputerChoose() {
|
||||
Random rgen = new Random();
|
||||
int computerInput = rgen.nextInt(1,3);
|
||||
int computerInput = rgen.nextInt(1,4);
|
||||
return computerInput;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user