-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTask 3.cpp
138 lines (110 loc) · 3.53 KB
/
Task 3.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
int summNegativeValue = 0, productBetweenMinMax, productEvenElements, summBetweenMinMax;
const int SIZE = 10;
int arr[SIZE];
srand(time(NULL));
for (int i = 0; i < SIZE; i++) // наполнение массива случайными числами
{
arr[i] = rand() % 50 - 25;
}
////// Сумму отрицательных элементов. //////
cout << endl; cout << "\t| ";
for (int i = 0; i < SIZE; i++)
{
cout << arr[i] << " | "; // вывод массива
if (arr[i] < 0)
{
summNegativeValue += arr[i];
}
}
cout << endl; cout << endl;
cout << "The sum of negative elements is equal to: " << summNegativeValue << endl; cout << endl;
////// Произведение элементов, находящихся между min и max элементами. //////
int minArr = arr[0];
int maxArr = arr[0];
int minElem = 0, maxElem = 0;
for (int i = 0; i < SIZE; i++) // Нахождение минимального и максимального значения
{
if (minArr > arr[i])
{
minArr = arr[i];
minElem = i;
}
if (maxArr < arr[i])
{
maxArr = arr[i];
maxElem = i;
}
}
int begin, end;
if (minElem < maxElem) // определение позиции минимального и максимального элемента
{
begin = minElem;
end = maxElem;
}
else
{
begin = maxElem;
end = minElem;
}
if (begin == end + 1) // нахождение произведения между между min и max элементами если таковые имеются.
{
cout << "There are no values between elements!" << endl;
}
else
{
productBetweenMinMax = arr[begin + 1];
for (int i = begin + 2; i < end; i++)
{
productBetweenMinMax *= arr[i];
}
cout << "The product of elements between min and max elements is equal to: " << productBetweenMinMax << endl; cout << endl;
}
////// Произведение элементов с четными номерами. //////
productEvenElements = arr[0];
for (int i = 0; i < SIZE; i += 2)
{
productEvenElements *= arr[i];
}
cout << "The product of elements with even numbers is equal to: " << productEvenElements << endl; cout << endl;
////// Сумму элементов, находящихся между первым и последним отрицательными элементами. //////
int beginNegative;
int endNegative;
int summNegative;
for (int i = 0; i < SIZE; i++) // Нахождение первого отрицательного элемента
{
if (arr[i] < 0)
{
beginNegative = i;
break;
}
}
for (int i = SIZE - 1; i >= 0; i--) // Нахождение ппоследнего отрицательного элемента
{
if (arr[i] < 0)
{
endNegative = i;
break;
}
}
if (beginNegative + 1 == endNegative) // Сумма элементов, находящихся между первым и последним отрицательными
{
cout << "There are no values between elements!" << endl;
}
else
{
summNegative = arr[beginNegative + 1];
for (int i = beginNegative + 2; i < endNegative; i++)
{
summNegative += arr[i];
}
}
cout << "The sum of the elements between the first and last negative it is equal to: " << summNegative << endl;
cout << endl;
system("pause");
return 0;
}