Computer Science, asked by ayeshakhanpsh747, 2 months ago

wtite program the converts the input celcius degree into equivalent fahrenheit degree by formula F=9/5*C+32?

Answers

Answered by akashrbllps
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