-
Notifications
You must be signed in to change notification settings - Fork 0
/
Source
53 lines (45 loc) · 1.09 KB
/
Source
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include<stdio.h>
#include<conio.h>
#include<locale>
int main() {
//debug update 21.11.2023 23:21
setlocale(0, "Rus");//changing the encoding UTF - 8
int a, language, mass[a], chet; //size mass
printf("Select language(1- Russian, 2-English)\n ");
scanf_s("%d", &language);
if (language == 1) {
printf("Введите как много значений вы хотите видеть:\n ");
scanf_s("%d", &a);
printf("Введите какие ячейки вы хотите, четные или нет(Четные - 2, нечетные - 1)\n ");
}
else {
printf("Enter how many values of the array will be: ");
scanf_s("%d", &a);
printf("Enter which cells you want, even or not (Even - 2, odd - 1)\n ");
}
scanf_s("%d", &chet);
//filling the array
for (int i = 0; i < a; i++) {
mass[i] = i;
}
//output of even array cells
for (int i = 0; i < a; i++) {
if (chet == 2) {
if (i % 2 == 0) {
printf("%d", mass[i]);
}
else {
printf(" ");
}
}
else {
if (i % 2 != 0) {
printf("%d", mass[i]);
}
else {
printf(" ");
}
}
}
_getch();
}