13 lines
202 B
C
13 lines
202 B
C
#ifndef EQUAL
|
|
#define EQUAL
|
|
|
|
#include <stdio.h>
|
|
#include <math.h>
|
|
#include <stdbool.h>
|
|
|
|
#define eps 1.e-6
|
|
|
|
int canFixArray(double * numbers);
|
|
bool isEqual(double first, double second);
|
|
|
|
#endif // EQUAL
|