Browse Source

removed static

clean up
master
Patrik Kriska 1 year ago
parent
commit
3da0f6cd5d

BIN
out/production/Interaktion Projekt/RockPaperScissors.class View File


+ 3
- 4
src/RockPaperScissors.java View File

System.out.println("The score is: " + playerScore + ":" + computerScore); System.out.println("The score is: " + playerScore + ":" + computerScore);
} }


private static String convertToWordUser(int userInput) {
public String convertToWordUser(int userInput) {


String userInputWord = "";
String userInputWord;


if (userInput == 1) { if (userInput == 1) {
userInputWord = "Rock"; userInputWord = "Rock";


public int letComputerChoose() { public int letComputerChoose() {
Random rgen = new Random(); Random rgen = new Random();
int computerInput = rgen.nextInt(1,4);
return computerInput;
return rgen.nextInt(1,4);
} }


} }

Loading…
Cancel
Save