下列各组变化中,每一转化在一定条件下均能一步实现的是
A.①②
B.①③
C.②③
D.①②③
答案:B
甲乙两车同时从A、B两城相向而行,4小时相遇.甲车的速度比乙车快15千米,已知两车的速度之比为5:4.A、B两城相距多少千米.
下列程序的运行结果为______。 #include<iostream.h> class myclass { private: int a,b,c; public: void fun( ) { int a; a=10; this->a=5; b=6; this->c=7; cout<<"a="<<a<<", this->a="<<this->a<<endl; } }; void main( ) { myclass objl; obj1.fun( ); }