Showing posts with label Find Temperature Fahrenheit to Celsius. Show all posts
Showing posts with label Find Temperature Fahrenheit to Celsius. Show all posts

Sunday, 15 January 2012

Program To Find Temprature Fahrenheit to Celsius In C++

#include<iostream.h>
#include<conio.h>
#include<math.h>
main()
{
clrscr();
float f,c,x;
cout<<"Enter number=";
cin>>x;
cout<<f;
getch();
}