Commit 1d484426 by Pedro Rolon

Se agregaron los archivos correspondientes a la tarea!

parents
import java.util.*;
class Carta
{
Carta(String completo){
this.valor = String.valueOf(completo.charAt(0));
this.palo = String.valueOf(completo.charAt(1));
}
String valorPalo(){
return this.valor + this.palo;
}
String valor;
String palo;
}
\ No newline at end of file
This diff is collapsed. Click to expand it.
# Documentación
* Él método **ganadores()** de la clase **MyClass** retorna un string que está compuesto por el índice de él o los ganadores separados por un espacio.
\ No newline at end of file
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