不能直接int a[10][10]={99}吗
int a[10][10]; int i,j; for(i=0;i<10;i++} for(j=0;j<10;j++) { ss[i][j]=99; }
memset(a,99,100);