牙折按解剖部位可分为()
A.冠折
B.根折
C.冠根联合折
D.根纵裂
E.A+B+C
参考答案:E
—Can her aunt play the guitar?
—No, she _____.[ ]
A. can
B. can’t
C. doesn’t
D. is
下列函数findmax拟实现在数组中查找最大值并作为函数值返回,但程序中有错导致不能实现预定功能。 #define MIN-2147483647 int findmax(int x[],int n) { int i,max; for(i=0;i<n;i++) { max=MIN; if(max<x[i]) max=x[i];} return max; } 造成错误的原因是( )。
A.定义语句int i,max;中max未赋初值
B.在赋值语句max=MIN;中,不应给max赋MIN值
C.语句id(max<Xmax=X中判断条件设置错误
D.赋值语句max=M1N;放错了位置