Исправил третье задание, теперь максимум высчитывается верно

This commit is contained in:
AZEN-SGG 2024-09-23 15:36:09 +03:00
parent f677c28eb4
commit d32450977c
5 changed files with 45 additions and 1 deletions

13
46Ex/main.c Normal file
View file

@ -0,0 +1,13 @@
#include <stdio.h>
#include "tools.h"
int solutionPolynomial(FILE * file, double x, double * &derivative, double * &polynomial)
int main(void) {
double x, derivative, polynomial;
FILE * file = getFile();
if (file == NULL) return 1;
printf("Enter the x cordinate: ");
scanf("%lf", &x);
}