甲在伪造了数十万元人民币以后,又将该批伪造的货币运输到外地出售给乙,牟取了巨额利润,对甲的行为应以伪造货币罪与出售假币罪实行数罪并罚。
参考答案:错
在一幅地图上量得甲、乙两地的距离是6cm,已知甲、乙两地的实际距离是120km,这幅地图的比例尺是______.
下面程序的结果是( )。 #include<iostream.h> class A { int a; public: A( ):a(1){ } void showa( ){ cout < < a;} }; class B { int a; public: B( ):a(2){ } void showa( ) { cout < < a;} }; class C:public A,public B { int a; public: C( ):a(3) { } void showa( ) {cout < < a;} }; void main( ) { C c; c.showa( ); }
A.将private int m改为protected int m
B.将private int m改为public int m
C.将private int m改为static i
D.将private int m改为int m