#include<stdio.h>
int main()
{
int i,j,m,n;
int a[m][n];
printf("enter the row of matrix:");
scanf("%d", &m);
printf("enter the coloum of matrix:");
scanf("%d",&n);
printf("enter the elements\n");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
scanf("%d", &a[i][j]);
}
}
printf("your matrix is :\n");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
printf("%d", a[i][j]);
}
}
}
`OUTPUT:输入矩阵的行:3 输入矩阵的颜色:3 输入元素 1个 2个 3个 4个 5个 6个 7 8个 8个 你的矩阵是: 788788788%
为什么我的输出只显示第 2 行和第 2 列的 3 个输入。`