откомпилил в qt. исправил ошибки:
Code
#include <iostream> //tyt
#include <math.h>
using namespace std; //tyt
int main()
{
int a=4,y;
double x,b=4.24,t,z13;
cout <<"vvedite x= ";
cin>>x;
cout <<"vvedite y= ";
cin>>y;
t=y%a;
if (fabs(sin(x))==0)
{
if ((t>0)&&(t<2)) //tyt
z13=pow(10,1.4)*pow(cos(x+a),b);
else
z13=b-a;
}
if (0<(fabs(sin(x))&&(fabs(sin(x))<0))) //tyt
z13=0.12*pow(10,3)*log(pow(x,2));
if (fabs(sin(x))>=0.5)
{
if (y==1)
z13=a;
else
if (y==0)
z13=b;
else
if (y==2)
z13=y-x;
else
z13=pow(sin(x),2.1);
}
cout <<"z13= "<<z13<<endl;
return 0;
}