现代远程教育的特点决定了远程学习以学生()为主。
A.上课
B.学习
C.自学
D.上网
参考答案:C
在井下进行裸露爆破,会造成哪些伤害?()
A、伤人
B、蹦坏机电设备、电缆
C、造成煤尘飞扬,引发煤尘爆炸事故
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"<<end1; else cout<<"x!=y"<<end1; } void disp() { cout<<"x="<<x<<",y="<<y>>end1; } }; void main() { Sample s1(2,3); s1.disp(); }