站内无空闲线路接车时,接入列车的线路如有动力,在接车前,须通知()不得移动。
A、副司机
B、运转车长
C、司机
D、司机、运转车长
参考答案:C
把一个长方形木框拉成平行四边形后,它的周长一定和原来长方形周长相等.…______.
有以下程序: #include <stdio.h> #include <stdlib.h> main() { int *a, *b, *c; a=b=c(int *)malloc(sizeof(int)); *a=1; *b=2, *c=3; a=b; printf("%d, %d, %d\n", *a, *b, *c); } 程序运行后的输出结果是______。
A.1,1,3
B.2,2,3
C.1,2,3
D.3,3,3