注意:这是一道作业题。
我的尝试
#include <stdio.h>
int main(){
printf("Enter the number of columns");
int i = scanf("%d",&i);
printf("Enter the number of rows");
int y = scanf("%d",&y);
int r[i][y];
int a;
int b;
for (a=0; a<i; a++){
for(b=0; b<y; b++){
int r[a][b] = scanf("%d",&a,&b); //bug
}
}
}
Bug: c:13 variable-sized object may not be initialized
编辑:
#include <stdio.h>
int main(){
printf("Enter the number of columns");
int i;
scanf("%d", &i);
printf("Enter the number of rows");
int y;
scanf("%d", &y);
int r[i][y];
int a;
int b;
for (a=0; a<i; a++){
for (b=0; b<y; b++){
scanf("%d",&r[a][b]);
}
}
}
最佳答案
scanf
获取正在读取的变量的地址并返回读取的项目数。它不返回读取的值。
代替
int i = scanf("%d",&i);
int y = scanf("%d",&y);
经过
scanf("%d",&i);
scanf("%d",&y);
和
int r[a][b] = scanf("%d",&a,&b);
经过
scanf("%d",&r[a][b]);
编辑:
您在程序中使用 variable length array (VLA) :
int r[i][y];
因为
i
和 y
不是常量而是变量。 VLA 是 C99 标准功能。关于c - 如何用用户输入值填充 C 中的二维数组?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8211087/