added more task

This commit is contained in:
ada-dmitry
2023-11-15 10:34:29 +03:00
parent 2a3484ba88
commit 10b256c812
14 changed files with 126 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <stdio.h>
float fahr(int cel)
{
float res;
res = cel * 9 / 5 + 32;
return res;
}