У тебя sin и cos должны быть от каких то либо аргументов, а не просто перемножение
C++ |
1
2
3
4
5
6
7
8
9
10
11
12
| #include <iostream>
#include <stdlib.h>
#include <Windows.h>
#include <math.h>
using namespace std;
void main()
{
float x=39.4,z=-0.825,y=-0.4,s;
s=(1+(sin(x+y)*sin(x+y)))/fabs(x-(2*y/(1+(x*x)*(y*y)))*(x*fabs(y))+(cos(atan(1/z))*cos(atan(1/z))));
cout<<"otvet:"<<s;
system("pause");
} |
|
Пользуйся