#include<stdio.h>
#include<conio.h>
main()
{
clrscr();
float feh, cel;
printf(" enter tem in feh:");
scanf("%f",&feh);
cel=5*(feh-32)/9;
printf("\n tem in cel iS %f",cel);
getch();
return 0;
}
0 comments:
Post a Comment