mirror of
https://gitlab.com/tutorial-java-rafa-munoz/tutorial-java-2024-25/tutorialjava2024-25.git
synced 2025-11-10 02:13:07 +01:00
feat(ch 5): solved blocks 3 & 4
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package tutorialJava.capitulo5.ejercicios.bloque02.articulosComestibles;
|
||||
|
||||
public class ArtNoPerecedero extends Articulo {
|
||||
|
||||
public ArtNoPerecedero() {
|
||||
// TODO Auto-generated constructor stub
|
||||
}
|
||||
|
||||
public ArtNoPerecedero(String codigo, String nombre, float precio) {
|
||||
super(codigo, nombre, precio);
|
||||
// TODO Auto-generated constructor stub
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user