Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Entrega final #1

Open
wants to merge 5 commits into
base: rama-1
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Desafio/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#Instrucciones de uso

Ingresar al archivo src\extras\objetos

-Modificar los valores que vienen por defecto, siendo el primer numero el tamaño de la maleta
-Guardar el archivo
-Ejecutar el programa con su ide favorito (en nuestro caso, eclipse)
Binary file modified Desafio/bin/clases/Maleta.class
Binary file not shown.
Binary file modified Desafio/bin/clases/State.class
Binary file not shown.
5 changes: 3 additions & 2 deletions Desafio/src/clases/Maleta.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ public Maleta clone()
//SE CREA UNA MALETA IDENTICA A LA ORIGINAL
Maleta nueva=new Maleta(this.getTotal());
//SE COPIA EL VALOR DE SUS VARIABLES
nueva.setActual(getActual());
nueva.setDisponible();


int i;
//SE INGRESA UNA COPIA DE LOS ELEMENTOS A LA NUEVA MALETA
Expand All @@ -84,6 +83,8 @@ public Maleta clone()
nueva.add((float)objetos.get(i));
}
//SE RETORNA LA COPIA DE LA MALETA
nueva.setActual(getActual());
nueva.setDisponible();
return nueva;
}

Expand Down
2 changes: 1 addition & 1 deletion Desafio/src/clases/State.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public State clone()
//SE ACTUALIZAN LAS VARIABLES
nuevo.setCantidad(maletas.size());
nuevo.setEspacioSobrante();
nuevo.setActual(getActual());
nuevo.setActual((Maleta)maletas.get(maletas.size()-1));
return nuevo;
}

Expand Down
Binary file added Desafio_1.pdf
Binary file not shown.
37 changes: 37 additions & 0 deletions coevaluacion.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
Coevaluacion

|Pablo Hurtado | Martín Toledo | Giselle Vasquez|
|--|--|--|
|30%|35%|35%|
|33.3%|33.35%|33.35%|
|30%|40%|30%|

Pablo Hurtado:
Aspectos positivos:
-Motivación.
-Responsable, puntual, contribuidor.
-Proactivo, tiene iniciativa y es participador.
Aspectos a mejorar:
-Informar al grupo
-Hablar mas en el grupo
-Mejorar uso de git

Martin Toledo
Aspectos positivos:
-Eficiencia
-Responsable, contribuidor, propone alternativas
-Proactivo, participativo, cooperador
Aspectos a mejorar:
-No revisar los detalles a ultima hora.
-Hablar mas en el grupo.
-Notificar cuando esta haciendo algo.

Giselle Vasquez
Aspectos positivos:
-Liderazgo
-Integradora, responsable, contribuidora
-Aportar ideas y posibles alternativas para resolver el problema
Aspectos a mejorar:
-Medir tiempos
-Hablar mas en el grupo
-Realizar las entregas con tiempo para poder seguir avanzando en el trabajo.
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

16 changes: 0 additions & 16 deletions readme.txt

This file was deleted.