Question: ASSIGNMENT (ARRAYS) Use functional decomposition to a C++ program that asks the user to enter his or her weight and the name of a planet.
ASSIGNMENT (ARRAYS)
Use functional decomposition to a C++ program that asks the user to enter his or her weight and the name of a planet. Use an enumerated type called planetType to represent the planets and use a switch statement that takes as its condition a planetType variable. The program, via the switch statement, then outputs how much the user would weigh on that planet. The following table gives the factor by which the weight must be multiplied for each planet.
The program must have the following functions in it: GetUserInput(), ConvertInputToPlanetType(), and OutputWeight() (your switch statement must be in OutputWeight()). I will let you determine what each function's parameters and return types should be. The program will output an error message if the user does not have correct planet name. The prompt and the error message will make it clear to the user how a planet name must be entered.
Use proper formatting and appropriate comments in your code. The output must be labeled clearly and formatted neatly.
The following table gives the factor by which the weight must be multiplied for each planet:
Mercury 0.4155
Venus 0.8975
Earth 1.0
Moon 0.166
Mars 0.3507
Juoiter 2.5374
Saturn 1.0677
Uranus 0.8947
Neptune 1.1794
Pluto 0.0899
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
