Question: Uuestion A (25 Points) - Multi-Conversions our first task is to process a value through multiple data onversions. You will create a program that does


Uuestion A (25 Points) - Multi-Conversions our first task is to process a value through multiple data onversions. You will create a program that does the following: - 1) Ask the user for a floating point value in Fahrenheit -2) Convert the value to Kelvin and print it to the user - The formula is K=(F32)5/9+273.15 -3) Cast it to an integer and print the new value to the user - 4) Prompt the user to enter another floating point value - 5) Add that value to the number you created in Step 3, then convert back to Fahrenheit and display to the user - The formula is F=(K273.15)9/5+32 NOTE: Don't worry about rounding or getting the exact same number of decimal places. As long as your math is correct and you follow the instructions, the decimal places aren't important (except in Step 3). Example Output (Note that your program must meet all requirements to earn full marks - this is just an example of possible output) [Multi-Converter ] Enter a value in Fahrenheit: 132.3 132.3F is approximately 328.8722 in Kelvin If we cast it to an int, it becomes 328K. What would you like to change this by? -5 We now have 323K. 323K is approximately 121.73 in Fahrenheit
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
