Ответ:
#include
using namespace std;
#define n 10
void fillingMass(int arr[n])
{
for(int i=0; i
{
arr[i] = -5 + rand() % 10;
cout<<arr[i]<<" "; // вывод содержимого массивов, если не надо уберешь</p>
}
cout<<endl; // вывод содержимого массивов, если не надо уберешь</p>
}
int countingZero(int arr[n])
{
int count = 0;
for(int i=0; i
{
if(arr[i] == 0)
count++;
}
return count;
}
int main()
{
int arr1[n],arr2[n],arr3[n];
fillingMass(arr1);
fillingMass(arr2);
fillingMass(arr3);
cout<<"In the first array, the number of zero elements = "<<countingZero(arr1)<<endl;</p>
cout<<"In the second array, the number of zero elements = "<<countingZero(arr2)<<endl;</p>
cout<<"In the third array, the number of zero elements = "<<countingZero(arr3)<<endl;</p>
return 0;
}
Объяснение: