Сделал 43ю Задачу с Массивами

This commit is contained in:
AZEN-SGG 2024-11-03 09:23:57 +03:00
parent 4e498f2819
commit baa0509a01
7 changed files with 144 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#ifndef MAX_DISTANCE
#define MAX_DISTANCE
#define exp 1.e-6
#define OUT 0
#define NO_LOCAL_MINIMA -1
#define ONE_LOCAL_MINIMUM -2
int maxDistance(double * array, int length);
#endif