commit2
This commit is contained in:
Никита Волков 2024-11-19 15:18:40 +04:00
parent 075f6b3837
commit 4d9db038a8

26
main1.c
View File

@ -21,4 +21,28 @@ void Load() {
// Закрытие входного файла
fclose(fin);
}
}
//commit2
void SaveResult() {
// Âû÷èñëåíèå ñðåäíåãî àðèôìåòè÷åñêîãî
float sa = 0;
float s = 0;
for (int i = 0; i < n; i++) {
s += a[i];
}
sa = s / n;
// Âûÿñíåíèå, ñêîëüêî ýëåìåíòîâ áîëüøå ñð àðèôìâðåòè÷åñêîãî
int m = 0;
for (int i = 0; i < n; i++) {
if (a[i] > sa) {
m++;
}
}
FILE* fout = fopen("c:\\lab_19\\out1.txt", "wt");
if (fout == NULL) {
printf("Âûõîäíîé ôàéë íå íàéäåí\n");
return;
}
//commit 3