Тема: C++ масиви
Знайти середнє арифметичне вiд'ємних елементiв. в мене все працює, тільки скажіть як мені знаходити кількість від'ємних елементів щоб порахувати середнє?
Ось текст програми:
#include <iostream>
#include <conio.h>
#include <iomanip>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main()
{
const int n=2,m=2;
int Massiv[n][m],i,j;
int ser, sum=0;
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
{
cout<<"Massiv["<<i<<"]["<<j<<"]= ";
cin>>Massiv[i][j];
}
cout<<endl<<"Massiv : "<<endl;
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
cout<<Massiv[i][j]<<" ";
}
cout<<endl;
}
cout<< "ot`emni : ";
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
if(Massiv[i][j]<0)
{
cout<<Massiv[i][j] <<" ";
sum+=Massiv[i][j];
ser=sum/Massiv[i][j];
}
cout<<"sum "<<sum<<endl<<"ser "<<ser;