This commit is contained in:
Oleksandr Vyshniakov 2025-03-02 22:34:37 +01:00
parent b7271e447b
commit e021fa2970

View File

@ -1,5 +1,4 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
#define maxcoe 100 #define maxcoe 100
int read_number (double *num) { int read_number (double *num) {
@ -23,7 +22,7 @@ double hornerovaschema (double x, double cofecients[], int count) { //вычес
} }
int main() { int main() {
double x; double x; //хранит точку, в которой вычисляется многочлен.
double cof[maxcoe]; double cof[maxcoe];
int count = 0; int count = 0;