Commit 9eafea77 by Yovan Martinez

Mejoras interfaz usuario

parent 1698eabc
......@@ -103,11 +103,11 @@ public class Poker {
}
public static void main(String[] args) {
Carta carta1 = new Carta("4S");
Carta carta2 = new Carta("TD");
Carta carta3 = new Carta("5H");
Carta carta4 = new Carta("8C");
Carta carta5 = new Carta("3D");
Carta carta1 = new Carta("8S");
Carta carta2 = new Carta("7D");
Carta carta3 = new Carta("6H");
Carta carta4 = new Carta("TC");
Carta carta5 = new Carta("9D");
Poker partida = new Poker();
int control = 0;//Variable para controlar el ingreso de cartas repetidas
//Le paso los valores con el metodo del profe
......@@ -136,7 +136,7 @@ public class Poker {
System.out.print(mano[i] + ",");
}
System.out.print("]\n");
System.out.println(partida.controlValor(partida.getValue()) + " " + partida.controlPalos(partida.getSuit()));
System.out.println("Jugada: " + partida.controlValor(partida.getValue()) + " " + partida.controlPalos(partida.getSuit()));
}
}else{
System.out.println("Jugada invalidas: Se encontraron cartas iguales, por favor intente de nuevo");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment