Exercise 2.8.7: toString for Flowers
5 points
Let's Go!
Complete the toString method to the Flower Class. Remember that the format for a toString method is:
public String toString()
The toString method should be formatted so that the following code
Flower foxglove = new Flower("Foxglove", "Red", "Digitalis", "obscura");
System.out.println(foxglove);
Prints out
Red Foxglove (Digitalis obscura)