2nd_Sem_Bogachev/2025.05.09/11Ex/integral.h
2025-05-14 20:12:23 +03:00

10 lines
137 B
C

#ifndef INTEGRAL_H
#define INTEGRAL_H
int simpson (
double (*f) (double),
double a, double b,
double eps, double *res
);
#endif