Ejercicio_Poker.java 223 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
package ejercicio_poo_ddr_05;

public class Ejercicio_Poker {

    public static void main(String[] args) {
        
        Baraja b = new Baraja();
        b.darCartas(5); 
        b.cartasMonton();
        
    }
    
}