Сделал задание 37

This commit is contained in:
AZEN-SGG 2024-09-22 19:06:18 +03:00
parent 3dd2710fc1
commit c6260ab148
8 changed files with 96 additions and 0 deletions

14
Fifth/main.c Normal file
View file

@ -0,0 +1,14 @@
#include <stdio.h>
#include "get_file.h"
#include "max_deviation.h"
/*
Çàäàíèå 37
*/
int main(void) {
FILE * file = getFile();
if (file == NULL) return -1;
printf("The standard deviation from the arithmetic mean is equal to %d", maxDeviation(file));
return 0;
}