#include #include int main(int argc, char *argv[]) {\ int x,w; printf("Podaj x \n"); scanf("%d",&x); w=3*(x*x*x)+2*(x*x)+4*x+10; printf("Wartość wielomianu wynosi %d", w); return 0; }