Відповідь:
#include <iostream>
#include <cstdlib>
#include <time.h>
using namespace std;
int main(){
srand(time(NULL));
setlocale(LC_ALL, "Rus");
int n,m,L,counter = 0;
cout << "Введите кол-во строк матрицы: ";
cin >> n;
cout << "Введите кол-во столбцов матрицы: ";
cin >> m;
int **arr = new int *[n];
for (int i = 0; i < n; i++)
arr[i]=new int[m];
cout << "Матрица порядка " << n << "x" << m << endl;
cout << "Введите матрицу: ";
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
cout << "Елемент " << "[" << i+1 << "]" << "[" << j+1 << "] : ";
cin >> arr[i][j];
}
cout << endl;
cout << "Матрица: " << endl;
cout << arr[i][j] << "\t";
cout << "Введите L: ";
cin >> L;
if(arr[i][j] > L){
counter++;
cout << "Кол-во чисел больших за L = " << counter << endl;
delete[]arr[i];
delete[]arr;
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
#include <iostream>
#include <cstdlib>
#include <time.h>
using namespace std;
int main(){
srand(time(NULL));
setlocale(LC_ALL, "Rus");
int n,m,L,counter = 0;
cout << "Введите кол-во строк матрицы: ";
cin >> n;
cout << "Введите кол-во столбцов матрицы: ";
cin >> m;
int **arr = new int *[n];
for (int i = 0; i < n; i++)
arr[i]=new int[m];
cout << "Матрица порядка " << n << "x" << m << endl;
cout << "Введите матрицу: ";
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
cout << "Елемент " << "[" << i+1 << "]" << "[" << j+1 << "] : ";
cin >> arr[i][j];
}
}
cout << endl;
cout << "Матрица: " << endl;
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
cout << arr[i][j] << "\t";
}
cout << endl;
}
cout << "Введите L: ";
cin >> L;
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
if(arr[i][j] > L){
counter++;
}
}
}
cout << "Кол-во чисел больших за L = " << counter << endl;
for (int i = 0; i < n; i++)
delete[]arr[i];
delete[]arr;
return 0;
}