搜题
问题   更新时间2023/4/3 12:59:00

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

(1)x<4 (2)y<3 (3)z==3
王老师:19139051760(拨打)