You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
V
#include <stdio.h>
main()
{
int fh;
int cel;
fh = 200;
cel = 5.0 * (fh-32) / 9.0;
printf("your celsius degree is %lf\n", cel);
}
that is my code