#include<stdio.h>
#include<conio.h>
#define MAX 10
void nhap(int a[MAX][MAX],int &d,int &c)
{
do
{
printf("nhap vao so dong cua mang: ");
scanf("%d",&d);
printf("nhap vao so cot cua mang: ");
scanf("%d",&c);
}
while(d<1||d>MAX||c<1||c>MAX) ;
printf("nhap mang co %d dong %d cot \n",d,c);
for(int i=0;i<d;i++)
for(int j=0;j<c;j++)
{
printf("a[%d][%d]: ",i,j);
scanf("%d",&a[i][j]);
}
}
void xuat(int a[MAX][MAX],int d,int c)
{
for (int i = 0; i < d; i++)
{
for (int j = 0; j < c; j++)
printf(" %d ", a[i][j]);//nho bo trong truoc va sau %d de dep
printf("\n");
}
}
void main()
{
int a[MAX][MAX],d,c;
nhap(a,d,c);
xuat(a,d,c);
getch();
}