#include <iostream> #include <cmath> using namespace std; int main() { double x, y, z, f; cin >> x >> y >> z; f = (pow(x, 2) + 4) / (pow(sin(z), 2) + x/2); cout << f; return 0; } Код #include <iostream> #include <cmath> using namespace std; int main() { double x, y, z, f; cin >> x >> y >> z; f = (pow(x, 2) + 4) / (pow(sin(z), 2) + x/2); cout << f; return 0; }