Directions :: Write a Buggy class. Buggy will have width, height, and speed properties. width, height, and speed are integer numbers. You must provide 3 constructors, an equals, and a toString for class Buggy.
One constructor must be a default.
One constructor must be an width and height only constructor.
One constructor must be an width, height, and speed constructor.
You must provide an equals method.
Equals will compare the width, height, and speed properties of two Buggy objects.
You must provide a toString() method.
The toString() should return the width, height, and speed of the Buggy.