Ответ:
#include <iostream>
#include <iomanip>
#include <ctime>
#define N 5
using namespace std;
int main()
{
int A[N][N];
int i, j, sum=0, kol_vo=0;
setlocale(LC_ALL, "Russian");
srand(time(0));
cout << "Исходная матрица: " << endl;
for (i = 0; i < N; i++)
for (j = 0; j < N; j++)
A[i][j] = rand() % 21 - 10;
if (j % 2 != 0)
sum += A[i][j];
kol_vo++;
}
cout << setw(4) << A[i][j];
cout << endl;
cout << "Сумма элементов, стоящих в четных столбцах: " << sum << endl;
cout << "Колиечство элементов, стоящих в четных столбцах: " << kol_vo << endl;
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#include <iostream>
#include <iomanip>
#include <ctime>
#define N 5
using namespace std;
int main()
{
int A[N][N];
int i, j, sum=0, kol_vo=0;
setlocale(LC_ALL, "Russian");
srand(time(0));
cout << "Исходная матрица: " << endl;
for (i = 0; i < N; i++)
{
for (j = 0; j < N; j++)
{
A[i][j] = rand() % 21 - 10;
if (j % 2 != 0)
{
sum += A[i][j];
kol_vo++;
}
cout << setw(4) << A[i][j];
}
cout << endl;
}
cout << "Сумма элементов, стоящих в четных столбцах: " << sum << endl;
cout << "Колиечство элементов, стоящих в четных столбцах: " << kol_vo << endl;
return 0;
}