(int min, int max)
| 28 | public static final Random random = new Random(); |
| 29 | |
| 30 | public static int randomRange(int min, int max) { |
| 31 | return random.nextInt(max - min + 1) + min; |
| 32 | } |
| 33 | |
| 34 | public static float randomFloatRange(float min, float max) { |
| 35 | return random.nextFloat() * (max - min) + min; |
no outgoing calls
no test coverage detected