Pseudocode need for this program
Write the pseudocode for a Metric Conversion application program that is menu-driven.
First, the program displays a Main Menu that states the purpose of the program and allows the user to select one of five metric system measurements or quit the program in the following manner:
Press the 1 key to convert meters to U.S. yards
Press the 2 key to convert kilometers to U.S. miles
Press the 3 key to convert kilograms to U.S. pounds
Press the 4 key to convert milliliters to U.S. ounces
Press the 5 key to convert liters to U.S. gallons
Press the 6 key to quit the program
After the user selects a metric measurement, the program must confirm the entry is valid (1 to 6). After validation, the program prompts the user to enter an amount of the selected metric measurement in the following manner:
Enter the amount of the metric measurement:
After user enters a metric measurement amount, the program must confirm the entry is valid (0.0 to 10000.0). After validation, the program converts the metric amount to the equivalent amount of the corresponding U.S. measurement. Here are the metric system measurements and U.S. conversions to be used:
Conversion Type:
|
Conversion Formula:
|
Meters to yards
|
1 meter = 1.0936 U.S. yards
|
Kilometers to miles
|
1 kilometer = 0.6214 U.S. miles
|
Kilograms to pounds
|
1 kilogram = 2.205 U.S. pounds
|
Milliliters to ounces
|
1 milliliter = 0.0338 U.S. ounces
|
Liters to gallons
|
1 liter = 0.264 U.S. gallons
|
Finally, the program displays both the corresponding U.S. measurement name and the equivalent amount in the following manner (program output will vary based on the user’s input):
The converted amount is 11.2094 U.S. yards