blob: 3eb6ff78efb15e314107f12190ed30693346cf90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef JUSTANOTHERCATGIRL_TASK4_INTEGRAL
#define JUSTANOTHERCATGIRL_TASK4_INTEGRAL
typedef double(*func_t)(double);
extern double accrc;
double int_rect(func_t f, double a, double b);
double int_trap(func_t f, double a, double b);
double int_simp(func_t f, double a, double b);
#endif //JUSTANOTHERCATGIRL_TASK4_INTEGRAL
|