公路纵断面是用假设的()沿公路中心线进行剖切的。
A、铅垂面
B、垂直面
参考答案:A
下面rotate函数的功能是:将n行n列的矩阵A转置为A’,例如:
#define N 4 void rotate(int a[ ][N]) { int i,j,t; for(i=0;i<N;i++) for(j=0;【 】;j++) {t=a[i][j]; 【 】; a[j][i]=t; }}