public class Species { //Put the instance variable here. //Create a Species constructor that takes in a String for its name, an int for //its population, and a double for its growth rate (this will represent // percent). //mergeSpecies adds the populations of the two species, changes the name //of the species to the concatenation of the two names, and the growth //rate to the maximum of the two growth rates public void mergeSpecies(Species other){ System.out.println("mergeSpecies NOT IMPLEMENTED YET"); } public String toString(){ System.out.println("toString NOT IMPLEMENTED YET"); return ""; } //increases the population according to the growth rate of the species, i.e. // updates the population instance variable public void grow() { System.out.println("grow NOT IMPLEMENTED YET"); } //returns the population of the species in x years according to its growth rate public int populationInXYears(int x){ System.out.println("getPoplulationInXYears NOT IMPLEMENTED YET"); return 1; } }