驾驶机动车在这种情况下怎样做?()
A.从前车左侧超越
B.占对向车道超越
C.从前车右侧超越
D.跟在前车后行驶
参考答案:D
我们初中生的最大责任就是考上重点高中。[ ]
下列程序的执行结果是( )。 #include<iostream.h> class Sample { int x,y; public: Sample(){x=y=0;) Sample(int a,int b){x=a;y=b;} ~Sample() { if=(x==y) cout<<“x=y”<<endl; else cout<<“x!=y”<<endl; } void disp() { cout<<“x=”<<x<<“,y=”<<y<<endl; } }; void main() { Sample s1(2,3); s1.disp(); }
A.x=2,y=2
B.x=3,y=3
C.x=2,y=3
D.x=3,y=2