一家商店将某种服装按成本价提高40%后标价,又经8折优惠卖出,结果每件仍获利24元,这种服装每件的成本为( )元。
200
在三相交流异步电动机定子上布置结构完全相同,在空间位置上互差()电角度的三相绕组,分别通入三相对称交流电,则在定子与转子的空气隙间将会产生旋转磁场。
A、60º
B、90º
C、120º
D、180º
下列程序的输出结果是( )。 #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.line 4
B.line 6
C.line 7
D.line 8