足够的风速可以有效的抑制和排除工作面所产生的粉尘,足够对风量可以有效地稀释流经工作面所产生的污染空气。()
参考答案:对
镜铁矿是()的异种。
A、黄铁矿
B、磁铁矿
C、钛铁矿
D、赤铁矿
下列程序的输出结果是( )。 #include<iostream.h> class Myclass { public:Myclass(int i=0,intj=0) { x=i; y=j; } void show( ) { cout < < "x=" < < x < < " " < "y=" < < y < < end1;} void show( )const { cout < < "x=" < < " " < < "y=’’ < < y < < end1;} privated: int x; int y; }; void main( ) { Myclass my1(3,4); const my2(7,8); my1.show( );my2.show( );}
A. x=4,y=3;x=7,y=8
B. x=3,y=4;x=7,y=8
C. x=7,y=8;x=4,y=3
D. x=8,y=7;x=7,y=8