Write a program that takes a temperature in Fahrenheit and writes it in Celsius. The formula for this conversion is C = 5 (F - 32)/9 Note that the temperature may use decimals. The prompt must be "Write a temperature in Fahrenheit:" and the result display both the original value in Fahrenheit and the conversion in Celcius, using the following format: 4F = -15.5556C

Advanced Engineering Mathematics
10th Edition
ISBN:9780470458365
Author:Erwin Kreyszig
Publisher:Erwin Kreyszig
Chapter2: Second-order Linear Odes
Section: Chapter Questions
Problem 1RQ
icon
Related questions
Question
**Task: Convert Temperature from Fahrenheit to Celsius**

**Description:**

Develop a program that accepts a temperature input in Fahrenheit and converts it to Celsius. The formula for the conversion is:

\[ C = \frac{5}{9} \times (F - 32) \]

Please note that the temperature values may include decimals.

**Prompt:**

The program should prompt the user with:

```
Write a temperature in Fahrenheit:
```

**Output:**

The program should display both the original Fahrenheit temperature and the converted Celsius temperature in the following format:

```
350F = 176.667C
```

**Sample Execution:**

```
Write a temperature in Fahrenheit: 350
350F = 176.667C
```

This will help in understanding the relationship between Fahrenheit and Celsius, commonly used temperature scales.
Transcribed Image Text:**Task: Convert Temperature from Fahrenheit to Celsius** **Description:** Develop a program that accepts a temperature input in Fahrenheit and converts it to Celsius. The formula for the conversion is: \[ C = \frac{5}{9} \times (F - 32) \] Please note that the temperature values may include decimals. **Prompt:** The program should prompt the user with: ``` Write a temperature in Fahrenheit: ``` **Output:** The program should display both the original Fahrenheit temperature and the converted Celsius temperature in the following format: ``` 350F = 176.667C ``` **Sample Execution:** ``` Write a temperature in Fahrenheit: 350 350F = 176.667C ``` This will help in understanding the relationship between Fahrenheit and Celsius, commonly used temperature scales.
Expert Solution
Step 1
 
#include <iostream>
#include <iomanip>

using namespace std;

int main()
{
    int f;
   
   cout<<"Write a temperature in Fahrenheit: ";
   cin>>f;
   
   cout<<f<<"F = "<<fixed<<setprecision(3)<<(((f-32)*5.0)/(9.0))<<"C"<<endl;
   
   return 0;
}
steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Recommended textbooks for you
Advanced Engineering Mathematics
Advanced Engineering Mathematics
Advanced Math
ISBN:
9780470458365
Author:
Erwin Kreyszig
Publisher:
Wiley, John & Sons, Incorporated
Numerical Methods for Engineers
Numerical Methods for Engineers
Advanced Math
ISBN:
9780073397924
Author:
Steven C. Chapra Dr., Raymond P. Canale
Publisher:
McGraw-Hill Education
Introductory Mathematics for Engineering Applicat…
Introductory Mathematics for Engineering Applicat…
Advanced Math
ISBN:
9781118141809
Author:
Nathan Klingbeil
Publisher:
WILEY
Mathematics For Machine Technology
Mathematics For Machine Technology
Advanced Math
ISBN:
9781337798310
Author:
Peterson, John.
Publisher:
Cengage Learning,
Basic Technical Mathematics
Basic Technical Mathematics
Advanced Math
ISBN:
9780134437705
Author:
Washington
Publisher:
PEARSON
Topology
Topology
Advanced Math
ISBN:
9780134689517
Author:
Munkres, James R.
Publisher:
Pearson,