wtite program the converts the input celcius degree into equivalent fahrenheit degree by formula F=9/5*C+32?
Answers
Answered by
0
Answer:
THIS IS IN C++ LANGUAGE BECAUSE I'M USING C++
#include <iostream>
using namespace std;
int main()
{
float C; //Take Temperatue in Celcius
float F;
cout << "Temperature in Celcius : ";
cin >> C ;
F = 9/5*C+32; // Convert Celcius into Fahrenheit
cout << F << endl ;
}
Explanation:
Similar questions