This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void vvod(int arr[], int n) | |
{ | |
printf("vvedite chiclo elementov:"); | |
scanf_s("%d", &n); | |
printf("vvedite elementy:"); | |
for (int i = 0; i < n; i++) | |
{ | |
scanf_s("%d", &arr[i]); |
NewerOlder