Task 8 is done

This commit is contained in:
AZEN-SGG 2025-05-13 19:19:11 +03:00
parent 896c925c11
commit 6f8c22c2bb
5 changed files with 209 additions and 0 deletions

10
2025.05.09/08Ex/solve.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef SOLVE_H
#define SOLVE_H
int t8_solve (
double (*f) (double),
double a, double b,
double eps, double *res
);
#endif