11 lines
132 B
C
11 lines
132 B
C
#ifndef EQUAL
|
|
#define EQUAL
|
|
|
|
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
#define eps 1.e-6
|
|
|
|
int equal(double * numbers);
|
|
|
|
#endif // EQUAL
|