#include
#include
using namespace std;
int main() {
float x,y,z,t,ks;
t=3.0;
cout<<"x = "; cin>>x;
cout<<"y = "; cin>>y;
cout<<"z = "; cin>>z;
ks=abs(pow(x,y/x)-pow(y/x,1/t))+(y-x)*
(cos(y)-z/(y-x))/(1+pow((y-x),2));
cout<<ks<<endl;<br> system("pause");
return 0;
}
x = 1.825e2
y = 18.225
z = -3.298e-2
1.2132