You are on page 1of 1

/*

* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to
change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this
template
*/
package sesion9;

/**
*
* @author danie
*/
public class Animal {
String raza;
int edad;

public Animal(String raza, int edad) {


this.raza = raza;
this.edad = edad;
}

public void comer(){


System.out.println("comiendo");
System.out.println("tomando agua");
}

You might also like