下面程序的作用是将以下给出的字符按其格式读入数组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]); } }