¿De qué manera puedo generar colores aleatorios en Java?
AUTOR PREGUNTA #1
gracias.
-
6 personas más tuvieron esta duda Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
for(Shape myShape : myShapeList){
int randomColor = (int)(Math.random()*myColorList.size());
myShape.setColor(myColorList.get(randomColor));
}