-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab5.cpp
122 lines (107 loc) · 3.52 KB
/
lab5.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
#include <iostream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <assert.h>
#include <cassert>
#include <stdlib.h>
#include <Windows.h>
#include <string>
#define groupno 3
using namespace std;
// epsilon for float comparison
#define EPS 0.00001
// Array size
#define SIZE 9
// Random number range
#define RANDRANGE 100
/*
Лабораторна робота 5
виконав Вітязь Денис
Варіант 3
Умова:
3. В новому масиві замініть елементи розташовані над головною діагоналлю симетрично
елементами, які розташовані під головною діагоналлю. Виведіть новий масив на екран. В новому
масиві розрахуйте суму всіх елементів, розташованих під головною діагоналлю.
*/
/*допоміжні функції*/
void fillRand(int (&arr)[SIZE][SIZE])
{
for (int x = 0; x < SIZE; x++)
for (int y = 0; y < SIZE; y++)
arr[x][y] = rand() % RANDRANGE;
}
void printarr(int (&arr)[SIZE][SIZE])
{
// отримуємо хендл консолі для зміни кольору тексту
HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
for (int x = 0; x < SIZE; x++)
{
for (int y = 0; y < SIZE; y++)
{
if (x > y)
SetConsoleTextAttribute(hConsole, 4); // червоний
else if (x < y)
SetConsoleTextAttribute(hConsole, 2); // зелений
else
SetConsoleTextAttribute(hConsole, 7); // білий
cout << setw(4) << arr[x][y];
}
cout << endl;
}
}
//
/*задачі*/
unsigned int task1(int (&arr)[SIZE][SIZE])
{
int sum = 0;
// ітеруємося по всіх елементах масиву
for (int x = 0; x < SIZE; x++)
for (int y = 0; y < SIZE; y++)
{
if (x > y)
arr[y][x] = arr[x][y]; // міняємо елемент над головною діагоналлю на симетричний елемент під головною діагоналлю
if (x < y)
sum += arr[x][y]; // елементи під головною діагоналлю додаємо до суми
}
return sum;
}
//
bool test()
{
// test task1
int arr[SIZE][SIZE];
// забиваємо масив одиницями
for (int x = 0; x < SIZE; x++)
for (int y = 0; y < SIZE; y++)
arr[x][y] = 1;
int sum = task1(arr);
// сума всіх одиничок знизу
int expected = SIZE * (SIZE - 1) / 2;
if (sum == expected)
return true;
else
cerr << "отримали суму " << sum << " а очікували " << expected << endl;
return true;
}
/*основна функція*/
int main(int argc, char *argv[])
{
int arr[SIZE][SIZE];
// set console encoding to utf-8
SetConsoleOutputCP(CP_UTF8);
// для тестів числа не будуть випадковими
if (argc > 1)
srand(1);
else
srand(time(NULL));
fillRand(arr);
cout << "Масив:" << endl;
printarr(arr);
int sum = task1(arr);
cout << "Масив після виконання завдання:" << endl;
printarr(arr);
cout << "Сума елементів під головною діагоналлю: " << sum << endl;
test();
return 0;
}