Write a C++ program that will ask for a temperature in Fahrenheit and display it in Celsius.

/* Write a C++ program that will ask for a temperature in Fahrenheit
and display it in Celsius. */
// FORMULA C = F-32 / 1.8 //
//----------------------------//

#include
#include
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 = "<getch();
}