Task 10 and 11 are done

This commit is contained in:
AZEN-SGG 2025-05-14 20:12:23 +03:00
parent ff1903ff80
commit c40059bcdc
19 changed files with 741 additions and 0 deletions

10
2025.05.09/12Ex/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