-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path11.52.cpp
60 lines (50 loc) · 991 Bytes
/
11.52.cpp
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
54
55
56
57
58
59
60
#include "stdafx.h"
#include <iostream>
#include <ctime>
#define n 10
using namespace std;
/*
Çàäàíèå 11.52
*/
int main() {
setlocale(LC_ALL, "Russian");
srand((unsigned)time(NULL));
int arr[n];
int a, b;
cout << "Ââåäèòå ÷èñëî A: ";
cin >> a;
cout << "Ââåäèòå ÷èñëî B: ";
cin >> b;
system("cls");
for (int i = 0; i < n; i++) {
arr[i] = rand() % 10 + 50;
cout << " [" << arr[i] << "] ";
}
cout << endl << "À: ";
for (int i = 0; i < n; i++) {
if ((arr[i] % 10) == 4) {
arr[i] /= 2;
cout << " [" << arr[i] << "] ";
}
}
cout << endl << endl << "Á: ";
for (int i = 0; i < n; i++) {
if ((arr[i] % 2))
pow(arr[i], 2);
else
arr[i] -= 2;
cout << " [" << arr[i] << "] ";
}
cout << endl << endl << "Â: ";
for (int i = 0; i < n; i++) {
if (!(arr[i] % 2)) {
arr[i] += a;
}
if (!(i % 2)) {
arr[i] -= b;
}
cout << " [" << arr[i] << "], ";
}
system("pause");
return 0;
}