Files
TMP_C712/SelfEducation/Task/T4/fahr/func.c
T
2023-11-16 12:03:31 +03:00

19 lines
211 B
C

#include <stdio.h>
float fahr(int cel)
{
float res;
res = (float)cel * 9 / 5 + 32;
return res;
}
float celsius(int fahr)
{
float res;
res = ((float)fahr - 32) * 5 / 9;
return res;
}