A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

C++ Program For Converting Temperature Celsius Into Fahrenheit
Q:

C++ Program For Converting Temperature Celsius Into Fahrenheit

0

 C++ Program For Converting Temperature Celsius Into Fahrenheit .means you have to given temperature in Celsius you need to change temperature in Fahrenheit .


Logic :- 

For converting temperature Celsius to Fahrenheit their is a formula you just put Celsius temperature and calculate and print temperature in Fahrenheit Formula is given below

Formula :-  

Fahrenheit = ((9/5) * Celsius) + 32; //or you can use 1.8 in place of 9/5

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 cel, fah;

 cout<<"\nEnter Temp in Celsius : ";
 cin>>cel;

 fah = (1.8 * cel) + 32;
 cout<<"\nTemperature in Fahrenheit : "<< fah;

 return (0);

}

 

Output:

Enter Temp in Celsius : 37.5

Temperature in Fahrenheit : 99.5

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

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now