“Seek knowledge from the cradle to the grave”
#include<iostream.h> #include<stdio.h> #include<conio.h>
int main() { float F,C; cout<< "\nEnter temperature in Farenheit : "; cin>>F; C=5*(F-32)/9; cout<<"Temperature in celcius is : "<<C; return 0; }
No comments:
Post a Comment