Question: help me write the program in java pls Develop an enum Planet to represent the planets of the solar system. Each planet has 2 fields:

Develop an enum Planet to represent the planets of the solar system. Each planet has 2 fields: an integer of the number of moons, and a boolean of whether it is a Jovian or terrestrial planet: name # of moons type Mercury 0 terrestrial Venus 0 terrestrial Earth 1 terrestrial Mars 2 terrestrial Jupiter 67 Jovian Saturn 62 Jovian Uranus 27 Jovian Neptune 14 Jovian Dis Write a program named PlanetInfo that a) Lists each planet by type - Iterate through each planet to determine type b) Prompts the user to enter the planet name, then displays the number of moons. c) For some extra challenge, but no extra marks yes that one again, add all of the necessary code to override the enum's toString() method so that a friendly name prints, i.e. the friendly name of MERCURY is Mercury, instead of the constant value. Sample output: Terrestrial planets: MERCURY VENUS EARTH MARS Jovian planets: JUPITER SATURN URANUS NEPTUNE Enter a planet name: Saturn SATURN has 62 moons
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
