满意答案
我们的爱57
2016.10.23
采纳率:54% 等级:12
已帮助:5665人
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869#include #include #include "time.h" int main(int argc, char *argv[]) { srand((unsigned)time(0)); //初始随机数种子 int n; //n行 n列 printf("请输入二维数组的大小: "); scanf("%d",&n); //--------动态定义维二数组--开始---------- int **s; s=(int**)malloc(sizeof(int*)*n); int i,j; for(i=0;i
追答:没问题啊, 出错提示截图没全
追问: 已经解决了,谢谢
00分享举报