Add .zip Archive

This commit is contained in:
AZEN-SGG 2025-05-23 00:39:50 +03:00
parent 3c3c94b028
commit 056e721d9a
34 changed files with 718 additions and 559 deletions

View file

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