• 2021-04-14
    6、以下程序段的输出结果是 。 int b[3][3]={0,1,2,0,1,2,0,1,2},i,j,t=0; for(i=0;i<3;i++) for(j=i;j<=i;j++) t=t+b[i][j]; printf("%d\n",t);