Start task 9

This commit is contained in:
AZEN-SGG 2025-05-13 20:06:25 +03:00
parent 6f8c22c2bb
commit 17a04e4bee
5 changed files with 215 additions and 0 deletions

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

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