Question
Create a program that uses a class to store information on a planet, as well as calculate additional information.Your program will need to use a
Create a program that uses a class to store information on a planet, as well as calculate additional information.Your program will need to use a class that must store at a minimum:
- The planets name
- Mass
- Diameter
- A member function that will calculate the surface area
- A member function that will calculate the density of the planet (mass / volume)
- A member function that will calculate the acceleration due to gravity at the planets surface
Assume that planets are spheres.
All members (name,mass,diameter) must be private, with get and set functions for each.Remember to enforce the constraint that the mass and diameter must be > 0.Your class may optionally have an input and display function.
Write a program that will prompt the user for the members of the class and will redisplay the name, mass, diameter as well as the surface area, density and acceleration due to gravity.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started