求以下语句的时间复杂度: for (i=1; i<n; ++i ) { for (j=1, j<n; ++j) A[i][j]=i*j; } A、O(n)B、O(n的平方)C、O(1)D、O(logn) 发布时间:2025-08-12 09:40:56