for (i=0; i< n; i++)for (j=0; j< m; j++)a[i][j]=0;

for (i=0; i< n; i++)
for (j=0; j< m; j++)
a[i][j]=0;
【正确答案】:O(m*n);语句a[i][j]=0;的执行次数为m*n。