唾液腺主要是由什么组织构成的 [ ]
A.上皮组织
B.肌肉组织
C.神经组织
D.结缔组织
答案:A
Is this museum ______ the students visited last year?
A.that
B.which
C.where
D.the one
有以下程序: #include <iostream> using namespace std; int main() { int m[5],n[5],*px,*py,k; px=m; py=n; for(k=1;k<4;k++) { *px=k; *py=2*k; cout<<m[k-1]<<n[k-1]; px++;py++; } cout<<end1; return 0; } 运行后的输出结果为 【8】 。