Java Radom flotante

Random r = new Random();
float random = min + r.nextFloat() * (max - min);
JulesG10