Відповідь:
#include <iostream>
#include <cstdlib>
#include <time.h>
using namespace std;
void randarr(int arr[6][6]){
for(int i = 0; i < 6; i++){
for(int j = 0; j < 6; j++){
arr[i][j] = rand() % 20 + 0;
}
void printarr(int arr[6][6]){
cout << arr[i][j] << "\t";
cout << endl;
int notnull(int arr[6][6]){
int counter = 0;
if(arr[i][j] != 0){
counter++;
return counter;
int main(){
srand(time(NULL));
setlocale(LC_ALL , "Ukrainian");
int G[6][6];
cout << "Матриця: " << endl;
randarr(G);
printarr(G);
cout << "Кiлькiсть ненульових елементiв = " << notnull(G) << endl;
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
#include <iostream>
#include <cstdlib>
#include <time.h>
using namespace std;
void randarr(int arr[6][6]){
for(int i = 0; i < 6; i++){
for(int j = 0; j < 6; j++){
arr[i][j] = rand() % 20 + 0;
}
}
}
void printarr(int arr[6][6]){
for(int i = 0; i < 6; i++){
for(int j = 0; j < 6; j++){
cout << arr[i][j] << "\t";
}
cout << endl;
}
}
int notnull(int arr[6][6]){
int counter = 0;
for(int i = 0; i < 6; i++){
for(int j = 0; j < 6; j++){
if(arr[i][j] != 0){
counter++;
}
}
}
return counter;
}
int main(){
srand(time(NULL));
setlocale(LC_ALL , "Ukrainian");
int G[6][6];
cout << "Матриця: " << endl;
randarr(G);
printarr(G);
cout << "Кiлькiсть ненульових елементiв = " << notnull(G) << endl;
return 0;
}