此程序的复杂度为()
for(int i=0;i<m;i++)
for(int j=0;j<n;j++)
A[i][j]=i*j;
A.O(m^2) B.O(n^2) C.O(m*n) D.O(m+n)
说出理由。。。