Files
TMP_C712/SelfEducation/Task/T4/fahr/func.c
T
2023-11-15 10:34:29 +03:00

10 lines
104 B
C

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