void cottongmax(int a[MAX][MAX],int n,int m)
{
int sum=0,summax=0,cotthu;
for (int j=0;j<m;j++)
{
for ( int i=0;i<n;i++)
{
sum+=a[i][j];
if (sum>summax)
{
summax=sum;
cotthu=j+1;
}
}
sum=0;
}
printf("cot co tong lon nhat la dong %d, voi tong = %d",cotthu,summax);
}
void xuat(int a[MAX][MAX],int n,int m)
{
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
printf(" %d ",a[i][j]);
printf("\n");
}
}
void main()
{
int a[MAX][MAX],n,m;
nhap(a,n,m);
printf("mang ban vua nhap la:\n");
xuat(a,n,m);
cottongmax(a,n,m);
getch();
}