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;
f=(c/5)*9+32;
cout<<f;
getch();
}
Older Posts
Home
Subscribe to:
Posts (Atom)