There are two main systems for measuring distance, weight and temperature, the Imperial System of Measurement and the Metric System of Measurement. Most countries use the Metric System, which uses the measuring units such as meters and grams and adds prefixes like kilo, milli and centi to count orders of magnitude. In the United States, we use the older Imperial system, where things are measured in feet, inches and pounds.
Write a program that shows the following menu options and lets the user to convert from Metric to Imperial system:
Converter Toolkit
--------------------
1. Temperature Converter
2. Distance Converter
3. Weight Converter
4. Quit
If the user enters 1, the program should ask for the temperature in Celsius and then convert it to Fahrenheit
If the user enters 2, the program should ask for the distance in Kilometers and convert it to Miles
If the user enters 3, the program should ask for the weight in Kilograms and convert it to Pounds
If the user enters 4, the program should end.