Нужна с программой. язык си. после ввода переменной х должна считать и выводить мне y, но, почему-то, выводит мне х. #include #include #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char *argv[]) { double x = 0; double a; double b; double c; double y = 0; printf("enter x =\n "); scanf("%d",& x); a = sin(x); printf("%d\n", a); b = pow(cos(x), 2); c = 1 + tan(x); y = 4 * pow(a, 2) + x * (pow(b, 2) + x * (pow(c, 2) + x * (a * b + pow((a + b), ; printf("%d\n", y); return 0; }