Ответ:
Объяснение:
#include
#include
#include
main()
{
setlocale(LC_ALL,"rus");
int x,y;
float d1,d2,d3,p;
printf("Введите число x ");
scanf("%d",&x);
printf("Введите число y ");
scanf("%d",&y);
d1=pow(cos(x)-sin(y),3);
d2=sqrt(tan(y));
d3=abs(pow(x,3)-y);
if(d2!=0)
{
p=(d1/d2)+d3;
printf("%f",p);
}
else
printf("Знаменатель равен 0");
}