Question: Write a C++ program to create-and-output a table of corresponding Fahrenheit, Celsius, Kelvin, and Rankine temperatures using while structure with 100 degree increment starting from
Write a C++ program to create-and-output a table of corresponding Fahrenheit, Celsius, Kelvin, and Rankine temperatures using while structure with 100 degree increment starting from a low-temperature to high temperature. Low and high temperatures are user inputs read as Celsius.
| The temperature conversion formulas listed below: | ||
| Fahrenheit | [F] = [C] 95 + 32 | [C] = ([F] 32) 59 |
| Kelvin | [K] = [C] + 273.15 | [C] = [K] 273.15 |
| Rankine | [R] = ([C] + 273.15) 95 | [C] = ([R] 491.67) 59 |
| Delisle | [De] = (100 [C]) 32 | [C] = 100 [De] 23 |
| Newton | [N] = [C] 33100 | [C] = [N] 10033 |
| Raumur | [R] = [C] 45 | [C] = [R] 54 |
| Rmer | [R] = [C] 2140 + 7.5 | [C] = ([R] 7.5) |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
