Temperature Conversion
Line: |
Input Line |
|
Type: |
Exercise |
You should have completed: |
Console Menu
|
This topic leads to: |
Bad Data
|
Summary
This exercise will put the previous topics into practice creating a simple temperature converter application. This application will
- Allow the user to choose between a Celsius to Farenheit conversion or a Farenheit to Celsius conversion
- Allow the user to enter a temperature to be converted
- Display the results in a user friendly manner to the user.
Task
- Create a console application which satisfies the above requirements
- Add the option(s) and ability to convert from either of these scales to Kelvin
- Add the ability for the user to perform subsequent conversions
Notes
-
You need to understand the solution before you can program the computer, so research the maths used to convert one temperature scale to another before you start writing code.