Код: Выделить всё
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(int argc, char *argv[])
{
float x,y,z,a,b;
printf("Input x,y,z\n");
scanf("%f%f%f",&x,&y,&z);
a=((log10fabs(y-sqrt(fabs (x))*(x-(y/z+pow(x,2)/4));
printf("a=(%f)",a);
b=x-(pow(x,2)/pow(3,3))+(pow(x,5)/pow(5,5));
system("PAUSE");
return 0;
}