This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
BMTP/lab08/prj/ModulesMykhailenko/ModulesMykhailenko.cpp

6 lines
139 B
C++
Raw Normal View History

#include <cmath>
float s_calculation(int x, int y, int z) {
return fabs(sin(fabs(y-pow(z,2)))+sqrt(x)-sqrt(pow(y*z, x)+(y/(2*M_PI))));
}