c语言.自定义函数 输入二维数组
来源:学生作业帮 编辑:大师作文网作业帮 分类:综合作业 时间:2024/11/10 12:13:29
c语言.自定义函数 输入二维数组
#include
#define N 5
void Input(int str[][])
{
int i j;
for(i=0;i
#include
#define N 5
void Input(int str[][])
{
int i j;
for(i=0;i
问题在注释里指出来了,看下面代码:
#include<stdio.h>
#define N 5
void Input(int str[N][N])//指明长度
{
\x05int i,j;//加逗号
\x05for(i=0;i<N;i++)//最后个分号是多余的
\x05\x05for(j=0;j<N;j++)//最后个分号是多余的
\x05\x05\x05scanf("%d",&str[i][j]);
}
void main()
{
\x05int str1[N][N];
\x05Input(str1);
}
#include<stdio.h>
#define N 5
void Input(int str[N][N])//指明长度
{
\x05int i,j;//加逗号
\x05for(i=0;i<N;i++)//最后个分号是多余的
\x05\x05for(j=0;j<N;j++)//最后个分号是多余的
\x05\x05\x05scanf("%d",&str[i][j]);
}
void main()
{
\x05int str1[N][N];
\x05Input(str1);
}