// FORMULA C = F-32 / 1.8 //
#include< conio.h>
#include< iostream.h>
void main()
{
float f,c;
clrscr();
cout<< "Enter Fahrenheit degree to find temperature in celsius: ";
cin>> f;
c = (f-32)/1.8;
cout<< "\n\n\tCELSIUS DEGREE = "<< c;
getch();
}
No comments:
Post a Comment