#include <stdio.h>
double f_to_c(double);
int main(void)
{
double x;
printf("화씨 온도를 입력하시오:");
scanf("%lf", &x);
printf("섭씨 온도는 %lf도 입니다.\n", f_to_c(x));
return 0;
}
double f_to_c(double f)
{
int c;
c = 5.0/9.0 * (f - 32.0);
return c;
}
#include <stdio.h>
double f_to_c(double);
int main(void)
{
double x;
printf("화씨 온도를 입력하시오:");
scanf("%lf", &x);
printf("섭씨 온도는 %lf도 입니다.\n", f_to_c(x));
return 0;
}
double f_to_c(double f)
{
int c;
c = 5.0/9.0 * (f - 32.0);
return c;
}