Begin26. Найти значение функции $$y = 4*(x-3)^6-7*(x-3)^3+2$$ при данном значении $$x$$.
Решение:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#include <stdio.h> #include <math.h> int main(void) { float x; printf("x:"); scanf ("%f", &x); float y=4*pow(x-3,6)-7*pow(x-3,3)+2; printf("y:%f\n",y); return 0; } |
Или не используя библиотеку math.h :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#include <stdio.h> int main(void) { float x; printf("x:"); scanf ("%f", &x); float y=4*(x-3)*(x-3)*(x-3)*(x-3)*(x-3)*(x-3)-7*(x-3)*(x-3)*(x-3)+2; printf("y:%f\n",y); return 0; } |
Другие задачи из раздела Begin можно посмотреть здесь.
Для С++