河南成教 / 计算机基础与程序设计
15[分析题]
下面程序的作用是将以下给出的字符按其格式读入数组ss中,然后输出行、列号之和为3的数组元素,请在____处填入正确内容。
A a f
c B d
e b c
g f D
main()
{
static char ss[4][3]={'A','a','f','c','B','d','e','b','C','g','f','D'};
int x,y,z;
for(x=0;【1】;x++)
for(y=0;【2】;y++)
{z=x+y; if(【3】)
printf("%c\n",ss[x][y]);
}
}
15[分析题]
下面程序的作用是将以下给出的字符按其格式读入数组ss中,然后输出行、列号之和为3的数组元素,请在____处填入正确内容。
A a f
c B d
e b c
g f D
main()
{
static char ss[4][3]={'A','a','f','c','B','d','e','b','C','g','f','D'};
int x,y,z;
for(x=0;【1】;x++)
for(y=0;【2】;y++)
{z=x+y; if(【3】)
printf("%c\n",ss[x][y]);
}
}
参考答案: