Commit b47c2521 authored by tahsif.ahmed's avatar tahsif.ahmed

Upload New File

parent 3f0d8f21
public class animal{
String name;
String species;
String biome;
double weight;
double height;
String foodType;
animal(String name, String species, String biome, double weight, double height, String foodType){
this.name = name;
this.species = species;
this.biome = biome;
this.weight = weight;
this.height = height;
this.foodType = foodType;
}
public animal(){
super();
}
}
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