Code mẫu

#include<iostream>
#define maxn 1000
using namespace std; 

int soHang =2;
int soCot = 4; 
int SoLuongSoChan(int A[100][100], int x, int y)
{
    int dem = 0;
    for(int i = 0; i<x ; i++)
    {
        for(int j = 0; j<y ; j++)
        {
            if(A[i][i] %2 ==0)
            {
                dem++;
            } 
        }    
    }
    return dem;
}

int main()
{
      int A[100][100];
    int x = 0;
    int y = 0; 
    for(x = 0; x< soHang ; x++)
    {
        for(y = 0; y<soCot ; y++)
        {
            cout<<"A[" << x << "][" << y <<"]=";
            cin >> A[x][y];
        }    
    }
    int dem = SoLuongSoChan(A, soHang , soCot );
    cout<<"\nSo luong phan tu chan = "<<dem ;
      
    return 0;
}