Исправил третье задание, теперь максимум высчитывается верно
This commit is contained in:
parent
f677c28eb4
commit
d32450977c
5 changed files with 45 additions and 1 deletions
13
46Ex/main.c
Normal file
13
46Ex/main.c
Normal 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue