7 lines
126 B
Plaintext
7 lines
126 B
Plaintext
public class Helper {
|
|
public int getRandomNumber(int max) {
|
|
return ((int)(Math.random() * (max+1)));
|
|
|
|
}
|
|
|
|
} |