Examples of Billete


Examples of Ericsson.Loteria.model.Billete

    private void recibirPeticionesCreacion() {
        System.out.println("Creacion Billetes de la Lotería");
        int opcion = 0;
       
        do {
            Billete billete = new Billete();
            billete.generarCombinacion();
            this.billetes.add(billete);
           
            System.out.println("¿Deseas crear otro billete? (SI = 1) (NO = 0)");
            opcion = entrada.nextInt();
        } while(opcion == 1);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.