mirror of
https://github.com/ada-dmitry/TMP_C712.git
synced 2026-09-24 09:10:16 +00:00
10 lines
104 B
C
10 lines
104 B
C
#include <stdio.h>
|
|
|
|
float fahr(int cel)
|
|
{
|
|
float res;
|
|
|
|
res = cel * 9 / 5 + 32;
|
|
|
|
return res;
|
|
} |