Program to Convert the given centigrade to Fahrenheit in C++

#include <iostream>
#include<conio.h>

using namespace std;

int main()
{
    float in,out;
    cout << "Enter Celsius : ";
    cin>>in;
    out=(in * 9/5) + 32;
    cout<<endl<<in<<" Celsius == "<<out<<" Fahrenheit";
    getch();
    return 0;
}

Output ::


You Can Download This Program From Here
Download Executable From Here

Comments

Popular Posts