This commit is contained in:
Smi7Ilia 2025-11-25 00:25:17 +01:00
commit 0e8f02eb8f

16
i.Smirnov_25.11.cpp Normal file
View file

@ -0,0 +1,16 @@
#include <vector>
float D(o, a)
{
float d=o/a;
return d;
}
int main()
{
float vl, x, drv;
drv=D(vl, x);
drv=D(drv, x);
return 0;
}