Problem :- 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 :-
See Also :- C Program For Converting Temperature Celsius Into Fahrenheit
Solution :-
#include<iostream>
using namespace std;
int main()
{
//Ghanendra Yadav
float cel, fah;
cout<<"\nEnter Temp in Celsius : ";
cin>>cel;
fah = (1.8 * cel) + 32;
cout<<"\nTemperature in Fahrenheit : "<< fah;
return (0);
}
See Also :- Java Program For Converting Temperature Celsius Into Fahrenheit
Output :-
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
See Also :- C Program For Converting Temperature Celsius Into Fahrenheit
Solution :-
#include<iostream>
using namespace std;
int main()
{
//Ghanendra Yadav
float cel, fah;
cout<<"\nEnter Temp in Celsius : ";
cin>>cel;
fah = (1.8 * cel) + 32;
cout<<"\nTemperature in Fahrenheit : "<< fah;
return (0);
}
Output :-
0 Comments: