#include <iostream>
#include <math.h>
int main()
{
double x, y, z, a, b, c, s,q;
std::cout << "Vvedite x:";
std::cin >> x;
std::cout << "Vvedite y:";
std::cin >> y;
std::cout << "Vvedite z:";
std::cin >> z;
q = pow(x - y, 2);
a = pow(9 + q, 1 / 3);
b = pow(x,2)+pow(y,2) + 2;
c = exp(fabs(x-y))*pow(tan(z),3);
s = a/b-c;
std::cout << "Result s=" << s << std::endl;
return 0;
}
Объяснение:
#include <iostream>
#include <math.h>
int main()
{
double x, y, z, a, b, c, s,q;
std::cout << "Vvedite x:";
std::cin >> x;
std::cout << "Vvedite y:";
std::cin >> y;
std::cout << "Vvedite z:";
std::cin >> z;
q = pow(x - y, 2);
a = pow(9 + q, 1 / 3);
b = pow(x,2)+pow(y,2) + 2;
c = exp(fabs(x-y))*pow(tan(z),3);
s = a/b-c;
std::cout << "Result s=" << s << std::endl;
return 0;
}
Объяснение: