Написать программу, которая в матрице A(N,M) находят все элементы , равные числу, введённому с клавиатуры. Подсчитать числа таких элементов. В Dev C++.
std::cout << "Enter the number of rows in the matrix: "; std::cin >> N; std::cout << "Enter the number of columns in the matrix: "; std::cin >> M; int A[N][M]; std::cout << "Enter the elements of the matrix:" << std::endl; for(int i=0; i<N; i++) { for(int j=0; j<M; j++) { std::cin >> A[i][j]; } } std::cout << "Enter the number to search for: "; std::cin >> num; int count = 0; for(int i=0; i<N; i++) { for(int j=0; j<M; j++) { if (A[i][j] == num) { std::cout << "Element " << num << " found at position (" << i << "," << j << ")" << std::endl; count++; } } } std::cout << "Total number of elements equal to " << num << " in the matrix: " << count << std::endl; return 0;
int main() {
std::cout << "Enter the number of rows in the matrix: ";int N, M, num;
std::cin >> N;
std::cout << "Enter the number of columns in the matrix: ";
std::cin >> M;
int A[N][M];
std::cout << "Enter the elements of the matrix:" << std::endl;
for(int i=0; i<N; i++) {
for(int j=0; j<M; j++) {
std::cin >> A[i][j];
}
}
std::cout << "Enter the number to search for: ";
std::cin >> num;
int count = 0;
for(int i=0; i<N; i++) {
for(int j=0; j<M; j++) {
if (A[i][j] == num) {
std::cout << "Element " << num << " found at position (" << i << "," << j << ")" << std::endl;
count++;
}
}
}
std::cout << "Total number of elements equal to " << num << " in the matrix: " << count << std::endl;
return 0;
}