Q:

Write a program in C++ to convert temperature in Celsius to Fahrenheit

0

Write a program in C++ to convert temperature in Celsius to Fahrenheit

 

Sample Output:

 Convert temperature in Celsius to Fahrenheit :                        
---------------------------------------------------                    
 Input the temperature in Celsius : 35                                 
 The temperature in Celsius    : 35                                    
 The temperature in Fahrenheit : 95

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <iostream>
using namespace std;
 
int main()
{
    float frh, cel;
		cout << "\n\n Convert temperature in Celsius to Fahrenheit :\n";
		cout << "---------------------------------------------------\n";	
    cout << " Input the temperature in Celsius : ";
    cin >> cel;
    frh = (cel * 9.0) / 5.0 + 32;
    cout << " The temperature in Celsius    : " << cel << endl;
    cout << " The temperature in Fahrenheit : " << frh << endl;
	cout << endl;
    return 0;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now