潮水对滚装客船靠泊和装卸货会有一定影响,但浮码头或设有吊桥设备的码头则没有什么影响。
参考答案:对
It _______ long before we ______ the result of the experiment.
A.will not be; will know
B.is; will know
C.will not be; know
D.is; know
设有定义语句: int x[6] = 2,4,6,8,5,7 , * p=x,i; 要求依次输出x数组6个元素中的值,不能完成此操作的语句是( )。
A.for(i=0; i <6;i++) printf("%2d",* (p++));
B.for(i =0;i <6;i ++ ) printf( "%2d" , * (p +i));
C.for(i =0;i <6;i ++ ) printf(" %2d" , * p ++ );
D.for(i =0;i <6;i ++ ) printf("%2d" ,( * p) ++ );