-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
112 changed files
with
1,903 additions
and
960 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
180 changes: 90 additions & 90 deletions
180
Actividad 1/Actividad1.java → Parcial 1/Actividad 1/Actividad1.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,90 +1,90 @@ | ||
//actividad realizada por Daniel Rubio Camacho A01633924 | ||
|
||
public class Actividad1 { | ||
|
||
public static void main(String[] args) { | ||
|
||
//todas las clases y sus atributos | ||
Elefantes dumbo; | ||
dumbo = new Elefantes(); | ||
dumbo.cantidadDeColmillos = 0; | ||
dumbo.cantidadDePatas = 4; | ||
dumbo.peso = 950; | ||
|
||
Elefantes mamaDeDumbo; | ||
mamaDeDumbo = new Elefantes(); | ||
mamaDeDumbo.cantidadDeColmillos = 0; | ||
mamaDeDumbo.cantidadDePatas = 4; | ||
mamaDeDumbo.peso = 4000; | ||
|
||
Serpientes ka; | ||
ka = new Serpientes(); | ||
ka.largoDeSerpiente = 10; | ||
ka.especieDeSerpiente = "piton"; | ||
ka.color = "cafe"; | ||
Serpientes quetzalcoatl; | ||
quetzalcoatl = new Serpientes(); | ||
quetzalcoatl.largoDeSerpiente = 5000; | ||
quetzalcoatl.especieDeSerpiente = "emplumada"; | ||
quetzalcoatl.color = "multicolor"; | ||
|
||
Ventilador rowenta; | ||
rowenta = new Ventilador(); | ||
rowenta.cuantasVelocidades = 3; | ||
rowenta.numeroDeAspas = 6; | ||
rowenta.tipoDeVentilador = "piso"; | ||
Ventilador taurus; | ||
taurus = new Ventilador(); | ||
taurus.cuantasVelocidades = 5; | ||
taurus.numeroDeAspas = 8; | ||
taurus.tipoDeVentilador = "techo"; | ||
|
||
//comportamiento de cada clase | ||
|
||
//clase elefante | ||
String nombrePersona = "Daniel"; | ||
int peso = dumbo.peso; | ||
int cantidadDePatas = dumbo.cantidadDePatas; | ||
int cantidadDeColmillos = dumbo.cantidadDeColmillos; | ||
dumbo.estampida(nombrePersona, peso, cantidadDePatas, cantidadDeColmillos); | ||
dumbo.beberAgua("Dumbo"); | ||
|
||
peso = mamaDeDumbo.peso; | ||
cantidadDePatas = mamaDeDumbo.cantidadDePatas; | ||
cantidadDeColmillos = mamaDeDumbo.cantidadDeColmillos; | ||
mamaDeDumbo.estampida(nombrePersona, peso, cantidadDePatas, cantidadDeColmillos); | ||
mamaDeDumbo.beberAgua("la mama de Dumbo"); | ||
|
||
//clase serpiente | ||
String queVaComer = "un niño humano"; | ||
int largoDeSerpiente = ka.largoDeSerpiente; | ||
String color = ka.color; | ||
String especieDeSerpiente = ka.especieDeSerpiente; | ||
ka.mordida(nombrePersona, largoDeSerpiente); | ||
ka.comer(queVaComer, especieDeSerpiente, color); | ||
|
||
largoDeSerpiente = quetzalcoatl.largoDeSerpiente; | ||
color = quetzalcoatl.color; | ||
especieDeSerpiente = quetzalcoatl.especieDeSerpiente; | ||
queVaComer = "a esos mugrientos olmecas"; | ||
quetzalcoatl.mordida(nombrePersona, largoDeSerpiente); | ||
quetzalcoatl.comer(queVaComer, especieDeSerpiente, color); | ||
|
||
//clase ventilador | ||
String accion = "prender"; | ||
int numeroVelocidad = 2; | ||
String tipoDeVentilador = rowenta.tipoDeVentilador; | ||
int cuantasVelocidades = rowenta.cuantasVelocidades; | ||
int numeroDeAspas = rowenta.numeroDeAspas; | ||
rowenta.encendidoApagado(nombrePersona, accion, tipoDeVentilador); | ||
rowenta.velocidad(numeroVelocidad, cuantasVelocidades, numeroDeAspas); | ||
|
||
tipoDeVentilador = taurus.tipoDeVentilador; | ||
cuantasVelocidades = taurus.cuantasVelocidades; | ||
numeroDeAspas = taurus.numeroDeAspas; | ||
accion = "apagar"; | ||
numeroVelocidad = 4; | ||
taurus.encendidoApagado(nombrePersona, accion, tipoDeVentilador); | ||
taurus.velocidad(numeroVelocidad, cuantasVelocidades, numeroDeAspas); | ||
} | ||
} | ||
//actividad realizada por Daniel Rubio Camacho A01633924 | ||
|
||
public class Actividad1 { | ||
|
||
public static void main(String[] args) { | ||
|
||
//todas las clases y sus atributos | ||
Elefantes dumbo; | ||
dumbo = new Elefantes(); | ||
dumbo.cantidadDeColmillos = 0; | ||
dumbo.cantidadDePatas = 4; | ||
dumbo.peso = 950; | ||
|
||
Elefantes mamaDeDumbo; | ||
mamaDeDumbo = new Elefantes(); | ||
mamaDeDumbo.cantidadDeColmillos = 0; | ||
mamaDeDumbo.cantidadDePatas = 4; | ||
mamaDeDumbo.peso = 4000; | ||
|
||
Serpientes ka; | ||
ka = new Serpientes(); | ||
ka.largoDeSerpiente = 10; | ||
ka.especieDeSerpiente = "piton"; | ||
ka.color = "cafe"; | ||
Serpientes quetzalcoatl; | ||
quetzalcoatl = new Serpientes(); | ||
quetzalcoatl.largoDeSerpiente = 5000; | ||
quetzalcoatl.especieDeSerpiente = "emplumada"; | ||
quetzalcoatl.color = "multicolor"; | ||
|
||
Ventilador rowenta; | ||
rowenta = new Ventilador(); | ||
rowenta.cuantasVelocidades = 3; | ||
rowenta.numeroDeAspas = 6; | ||
rowenta.tipoDeVentilador = "piso"; | ||
Ventilador taurus; | ||
taurus = new Ventilador(); | ||
taurus.cuantasVelocidades = 5; | ||
taurus.numeroDeAspas = 8; | ||
taurus.tipoDeVentilador = "techo"; | ||
|
||
//comportamiento de cada clase | ||
|
||
//clase elefante | ||
String nombrePersona = "Daniel"; | ||
int peso = dumbo.peso; | ||
int cantidadDePatas = dumbo.cantidadDePatas; | ||
int cantidadDeColmillos = dumbo.cantidadDeColmillos; | ||
dumbo.estampida(nombrePersona, peso, cantidadDePatas, cantidadDeColmillos); | ||
dumbo.beberAgua("Dumbo"); | ||
|
||
peso = mamaDeDumbo.peso; | ||
cantidadDePatas = mamaDeDumbo.cantidadDePatas; | ||
cantidadDeColmillos = mamaDeDumbo.cantidadDeColmillos; | ||
mamaDeDumbo.estampida(nombrePersona, peso, cantidadDePatas, cantidadDeColmillos); | ||
mamaDeDumbo.beberAgua("la mama de Dumbo"); | ||
|
||
//clase serpiente | ||
String queVaComer = "un niño humano"; | ||
int largoDeSerpiente = ka.largoDeSerpiente; | ||
String color = ka.color; | ||
String especieDeSerpiente = ka.especieDeSerpiente; | ||
ka.mordida(nombrePersona, largoDeSerpiente); | ||
ka.comer(queVaComer, especieDeSerpiente, color); | ||
|
||
largoDeSerpiente = quetzalcoatl.largoDeSerpiente; | ||
color = quetzalcoatl.color; | ||
especieDeSerpiente = quetzalcoatl.especieDeSerpiente; | ||
queVaComer = "a esos mugrientos olmecas"; | ||
quetzalcoatl.mordida(nombrePersona, largoDeSerpiente); | ||
quetzalcoatl.comer(queVaComer, especieDeSerpiente, color); | ||
|
||
//clase ventilador | ||
String accion = "prender"; | ||
int numeroVelocidad = 2; | ||
String tipoDeVentilador = rowenta.tipoDeVentilador; | ||
int cuantasVelocidades = rowenta.cuantasVelocidades; | ||
int numeroDeAspas = rowenta.numeroDeAspas; | ||
rowenta.encendidoApagado(nombrePersona, accion, tipoDeVentilador); | ||
rowenta.velocidad(numeroVelocidad, cuantasVelocidades, numeroDeAspas); | ||
|
||
tipoDeVentilador = taurus.tipoDeVentilador; | ||
cuantasVelocidades = taurus.cuantasVelocidades; | ||
numeroDeAspas = taurus.numeroDeAspas; | ||
accion = "apagar"; | ||
numeroVelocidad = 4; | ||
taurus.encendidoApagado(nombrePersona, accion, tipoDeVentilador); | ||
taurus.velocidad(numeroVelocidad, cuantasVelocidades, numeroDeAspas); | ||
} | ||
} |
File renamed without changes.
32 changes: 16 additions & 16 deletions
32
Actividad 1/Elefantes.java → Parcial 1/Actividad 1/Elefantes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
public class Elefantes { | ||
|
||
//atributos | ||
public int cantidadDePatas; | ||
public int cantidadDeColmillos; | ||
public int peso; | ||
|
||
//comportamiento | ||
public void estampida(String nombrePersona, int peso, int cantidadDePatas, int cantidadDeColmillos){ | ||
System.out.println("Cuidado " + nombrePersona); | ||
System.out.println("¡Un elefante de " + peso + " kilos viene cargando hacia ti con sus " + cantidadDePatas + " patas y " + cantidadDeColmillos + " colmillos"); | ||
} | ||
public void beberAgua(String nombreElefante){ | ||
System.out.println("Cuidado con " + nombreElefante + ", está bebiendo agua, no lo asusten."); | ||
} | ||
} | ||
public class Elefantes { | ||
|
||
//atributos | ||
public int cantidadDePatas; | ||
public int cantidadDeColmillos; | ||
public int peso; | ||
|
||
//comportamiento | ||
public void estampida(String nombrePersona, int peso, int cantidadDePatas, int cantidadDeColmillos){ | ||
System.out.println("Cuidado " + nombrePersona); | ||
System.out.println("¡Un elefante de " + peso + " kilos viene cargando hacia ti con sus " + cantidadDePatas + " patas y " + cantidadDeColmillos + " colmillos"); | ||
} | ||
public void beberAgua(String nombreElefante){ | ||
System.out.println("Cuidado con " + nombreElefante + ", está bebiendo agua, no lo asusten."); | ||
} | ||
} |
File renamed without changes.
36 changes: 18 additions & 18 deletions
36
Actividad 1/Serpientes.java → Parcial 1/Actividad 1/Serpientes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
//actividad realizada por Daniel Rubio Camacho A01633924 | ||
|
||
public class Serpientes { | ||
|
||
//atributos | ||
public int largoDeSerpiente; //en metros | ||
public String especieDeSerpiente; | ||
public String color; | ||
|
||
//comportamiento | ||
public void mordida(String nombrePersona, int largoDeSerpiente){ | ||
System.out.println("ÑAM! Te voy a morder " + nombrePersona + ", con mis " + largoDeSerpiente + " metros de largo"); | ||
} | ||
public void comer(String queVaComer, String especieDeSerpiente, String color){ | ||
System.out.println("Hoy quiero comer... " + queVaComer); | ||
System.out.println("Que bien se siente ser una " + especieDeSerpiente + " de color " + color); | ||
} | ||
} | ||
//actividad realizada por Daniel Rubio Camacho A01633924 | ||
|
||
public class Serpientes { | ||
|
||
//atributos | ||
public int largoDeSerpiente; //en metros | ||
public String especieDeSerpiente; | ||
public String color; | ||
|
||
//comportamiento | ||
public void mordida(String nombrePersona, int largoDeSerpiente){ | ||
System.out.println("ÑAM! Te voy a morder " + nombrePersona + ", con mis " + largoDeSerpiente + " metros de largo"); | ||
} | ||
public void comer(String queVaComer, String especieDeSerpiente, String color){ | ||
System.out.println("Hoy quiero comer... " + queVaComer); | ||
System.out.println("Que bien se siente ser una " + especieDeSerpiente + " de color " + color); | ||
} | ||
} |
File renamed without changes.
46 changes: 23 additions & 23 deletions
46
Actividad 1/Ventilador.java → Parcial 1/Actividad 1/Ventilador.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
//actividad realizada por Daniel Rubio Camacho A01633924 | ||
|
||
public class Ventilador { | ||
|
||
//atributos | ||
public String tipoDeVentilador; | ||
public int numeroDeAspas; | ||
public int cuantasVelocidades; | ||
|
||
//comportamiento | ||
public void encendidoApagado(String nombrePersona, String accion, String tipoDeVentilador){ | ||
if(accion == "prender") { | ||
System.out.println("" + nombrePersona + " ha encendido el ventilador de " + tipoDeVentilador); | ||
} | ||
else if(accion == "apagar") { | ||
System.out.println("" + nombrePersona + " ha apagado el ventilador de " + tipoDeVentilador); | ||
} | ||
} | ||
public void velocidad(int numeroVelocidad, int cuantasVelocidades, int numeroDeAspas){ | ||
System.out.println("El ventilador tiene " + cuantasVelocidades + " velocidades"); | ||
System.out.println("Has puesto el ventilador en su velocidad " + numeroVelocidad + ", wow, con sus " + numeroDeAspas + " sí que da mucho aire"); | ||
} | ||
} | ||
//actividad realizada por Daniel Rubio Camacho A01633924 | ||
|
||
public class Ventilador { | ||
|
||
//atributos | ||
public String tipoDeVentilador; | ||
public int numeroDeAspas; | ||
public int cuantasVelocidades; | ||
|
||
//comportamiento | ||
public void encendidoApagado(String nombrePersona, String accion, String tipoDeVentilador){ | ||
if(accion == "prender") { | ||
System.out.println("" + nombrePersona + " ha encendido el ventilador de " + tipoDeVentilador); | ||
} | ||
else if(accion == "apagar") { | ||
System.out.println("" + nombrePersona + " ha apagado el ventilador de " + tipoDeVentilador); | ||
} | ||
} | ||
public void velocidad(int numeroVelocidad, int cuantasVelocidades, int numeroDeAspas){ | ||
System.out.println("El ventilador tiene " + cuantasVelocidades + " velocidades"); | ||
System.out.println("Has puesto el ventilador en su velocidad " + numeroVelocidad + ", wow, con sus " + numeroDeAspas + " sí que da mucho aire"); | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
100 changes: 50 additions & 50 deletions
100
Actividad 2/Actividad2.java → Parcial 1/Actividad 2/Actividad2.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,50 @@ | ||
//actividad realizada por Daniel Rubio A01633924 | ||
public class Actividad2 { | ||
public static void main(String[] args) { | ||
|
||
System.out.println("Carro Jeep:"); | ||
Car Jeep = new Car("Grand Cherokee", 1998); | ||
int velocidad = 80; | ||
Jeep.arrancado(velocidad); | ||
Jeep.presumir(Jeep.getModelo(), Jeep.getYear()); | ||
System.out.println(Jeep.getModelo()); | ||
System.out.println(Jeep.getYear()); | ||
|
||
System.out.println("Carro Ford"); | ||
Car Ford = new Car(); | ||
velocidad = 60; | ||
Ford.arrancado(velocidad); | ||
Ford.presumir(Ford.getModelo(), Ford.getYear()); | ||
System.out.println(Ford.getModelo()); | ||
System.out.println(Ford.getYear()); | ||
|
||
System.out.println("Kanguro Kangy:"); | ||
Kangaroo Kangy = new Kangaroo("Kangy", 12); | ||
Kangy.saltar(Kangy.getName()); | ||
Kangy.envejecer(Kangy.getName(), Kangy.getAge()); | ||
System.out.println(Kangy.getName()); | ||
System.out.println(Kangy.getAge()); | ||
|
||
System.out.println("Canguro Kangu:"); | ||
Kangaroo Kangu = new Kangaroo(); | ||
Kangu.saltar(Kangu.getName()); | ||
Kangu.envejecer(Kangu.getName(), Kangu.getAge()); | ||
System.out.println(Kangu.getName()); | ||
System.out.println(Kangu.getAge()); | ||
|
||
System.out.println("Computadora Asus:"); | ||
Computer Asus = new Computer(512, 3.4f); | ||
Asus.descarga(Asus.getMemory()); | ||
Asus.encender(Asus.getClockSpeed()); | ||
System.out.println(Asus.getMemory()); | ||
System.out.println(Asus.getClockSpeed()); | ||
|
||
System.out.println("Computadora Predator:"); | ||
Computer Predator = new Computer(); | ||
Predator.descarga(Predator.getMemory()); | ||
Predator.encender(Predator.getClockSpeed()); | ||
System.out.println(Predator.getMemory()); | ||
System.out.println(Predator.getClockSpeed()); | ||
|
||
} | ||
} | ||
//actividad realizada por Daniel Rubio A01633924 | ||
public class Actividad2 { | ||
public static void main(String[] args) { | ||
|
||
System.out.println("Carro Jeep:"); | ||
Car Jeep = new Car("Grand Cherokee", 1998); | ||
int velocidad = 80; | ||
Jeep.arrancado(velocidad); | ||
Jeep.presumir(Jeep.getModelo(), Jeep.getYear()); | ||
System.out.println(Jeep.getModelo()); | ||
System.out.println(Jeep.getYear()); | ||
|
||
System.out.println("Carro Ford"); | ||
Car Ford = new Car(); | ||
velocidad = 60; | ||
Ford.arrancado(velocidad); | ||
Ford.presumir(Ford.getModelo(), Ford.getYear()); | ||
System.out.println(Ford.getModelo()); | ||
System.out.println(Ford.getYear()); | ||
|
||
System.out.println("Kanguro Kangy:"); | ||
Kangaroo Kangy = new Kangaroo("Kangy", 12); | ||
Kangy.saltar(Kangy.getName()); | ||
Kangy.envejecer(Kangy.getName(), Kangy.getAge()); | ||
System.out.println(Kangy.getName()); | ||
System.out.println(Kangy.getAge()); | ||
|
||
System.out.println("Canguro Kangu:"); | ||
Kangaroo Kangu = new Kangaroo(); | ||
Kangu.saltar(Kangu.getName()); | ||
Kangu.envejecer(Kangu.getName(), Kangu.getAge()); | ||
System.out.println(Kangu.getName()); | ||
System.out.println(Kangu.getAge()); | ||
|
||
System.out.println("Computadora Asus:"); | ||
Computer Asus = new Computer(512, 3.4f); | ||
Asus.descarga(Asus.getMemory()); | ||
Asus.encender(Asus.getClockSpeed()); | ||
System.out.println(Asus.getMemory()); | ||
System.out.println(Asus.getClockSpeed()); | ||
|
||
System.out.println("Computadora Predator:"); | ||
Computer Predator = new Computer(); | ||
Predator.descarga(Predator.getMemory()); | ||
Predator.encender(Predator.getClockSpeed()); | ||
System.out.println(Predator.getMemory()); | ||
System.out.println(Predator.getClockSpeed()); | ||
|
||
} | ||
} |
File renamed without changes.
Oops, something went wrong.