液压式制动系主要由制动踏板、制动总泵、制动分泵、()及回位弹簧等组成。
A、制动蹄
B、制动鼓
C、制动液
D、制动气室
参考答案:A, B, C
鲸终生生活在海洋z,颈部不明显,具鳍,体表光滑无毛.但它是哺乳动物,而不是鱼类的主要原因是( )
A.用肺呼吸,体温恒定
B.心脏分四腔,两条血液循环路线
C.神经系统发达,能产生条件反射
D.体腔内有隔,胎生、哺乳
【说明】 以下程序为求行列式X(5,5)的值S。 【Visual Basic代码】 Private Function col ( byval x ( 5,5 ) as integer ) as long dim fesult as long dim temp as long dim I as integer dim j as integer dim k as imeger result = 0 for I = to 5 (1) for j = 1 to 5 if I+j>6 then k= ( 1+j ) mod 5 else k=1 endif temp=temp*x ( k,j ) (2) result= (3) (4) (5) End function