Нужно Вычислить в Visual Studio C++

Приложения:

Ответы

Ответ дал: pz4t9v0d4tly
0

#include <cmath>

#include <iostream>

using namespace std;

int main() {

float z(0), x(126), y(456);

z = 1 - sin(x + y) * cos(x - y);

if(z<0) {

 z = z*-1;

 cout << 1;

}

z = z - sqrt(x*x*x);

cout << z;

}

Вас заинтересует