#include <iostream>
#include <stdio.h>
#include <locale.h>
#include <ctime>
int main() {
setlocale(LC_ALL, "Rus");
system("chcp 1251");
srand(time(NULL));
int A[10], even_amount = 0, n;
for (int i = 0; i < 10; i++) {
A[i] = rand() % 100;
printf("%d ", A[i]);
}
printf("\n\nС какого элемента считать?\n");
scanf_s("%d", &n);
while (n > 10 or n < 1) {
printf("\nВ массиве всего 10 элементов, введите число от 1 до 10 включительно\n");
for (int i = n - 1; i < 10; i++) {
if (A[i] % 2 == 0) {
even_amount += 1;
printf("\nКоличество четных чисел начиная с %d места равно %d\n", n, even_amount);
system("pause");
return(0);
#include <iostream>
#include <stdio.h>
#include <locale.h>
#include <ctime>
int main() {
setlocale(LC_ALL, "Rus");
system("chcp 1251");
srand(time(NULL));
int A[10], even_amount = 0, n;
for (int i = 0; i < 10; i++) {
A[i] = rand() % 100;
printf("%d ", A[i]);
}
printf("\n\nС какого элемента считать?\n");
scanf_s("%d", &n);
while (n > 10 or n < 1) {
printf("\nВ массиве всего 10 элементов, введите число от 1 до 10 включительно\n");
scanf_s("%d", &n);
}
for (int i = n - 1; i < 10; i++) {
if (A[i] % 2 == 0) {
even_amount += 1;
}
}
printf("\nКоличество четных чисел начиная с %d места равно %d\n", n, even_amount);
system("pause");
return(0);
}