Play.java 337 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
public class Play {
    String numeros="";

    public String getNumeros() {
        return numeros;
    }

    public String lanzarDados(){
        for (int i=0; i<5;i++){
            int numero = (int) Math.floor(Math.random()*6+1);
            this.numeros += (String.valueOf(numero));
        }
        return this.numeros;
    }

}