lab5/main1.c
2024-11-19 16:11:15 +04:00

21 lines
470 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

int a[1000]; //массив. 1000 - максимально допустимое количество элементов
int n; // Реальное количество элементов в массиве
void Load() {
// Открытие входного файла
FILE* fin = fopen("c:\\lab_19\\in1.txt", "rt");
if (fin == NULL) {
printf("Входной файл не найден\n");
return;
}
// Загрузка массива из входного файла
fscanf_s(fin, "%d", &n);
for (int i = 0; i < n; i++) {
fscanf_s(fin, "%d", &a[i]);
}
// Закрытие входного файла
fclose(fin);
}
//ветка1