func.c 105 B

12345
  1. #include <math.h>
  2. double f(double x) {
  3. return pow(x, 5) - 2.9 * pow(x, 3) + 6.5 * pow(x, 2) - 7 * x;
  4. }