Commit 0f790486 by Yovan Martinez

Merge con la rama develop y correccion al mostrar resultados

parent 47a21765
...@@ -123,7 +123,10 @@ public class Poker { ...@@ -123,7 +123,10 @@ public class Poker {
partida.setValues(carta4.valor); partida.setValues(carta4.valor);
partida.setValues(carta5.valor); partida.setValues(carta5.valor);
if ((partida.controlValor(partida.getValue() == "") && (partida.controlPalos(partida.getSuit())== ""))) {
System.out.println("CARTA ALTA");
}else{
System.out.println(partida.controlValor(partida.getValue()) + " " + partida.controlPalos(partida.getSuit())); System.out.println(partida.controlValor(partida.getValue()) + " " + partida.controlPalos(partida.getSuit()));
}
} }
} }
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