-
Notifications
You must be signed in to change notification settings - Fork 0
/
Homework-test-3.cpp
39 lines (34 loc) · 1.09 KB
/
Homework-test-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
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
const int rows = 5;
const int cols = 5;
int array[rows][cols];
cout << "Заполнение массива по формуле (элемент больше суммы его индексов на 1):" << endl;
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
if (i == 0 && j == 0) {
array[i][j] = 1;
} else {
array[i][j] = i + j + 2;
}
}
}
cout << "Ваш массив:" << endl;
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
cout << setw(4) << array[i][j];
}
cout << endl;
}
cout << "Произведение элементов в строках:" << endl;
for (int i = 0; i < rows; i++) {
int product = 1;
for (int j = 0; j < cols; j++) {
product *= array[i][j];
}
cout << "Произведение элементов строки " << i + 1 << ": " << product << endl;
}
return 0;
}