煤的元素组成是指煤中有机组分中的主要元素。它们是碳、氢、氧、氮、硫等五种元素。其中,煤中的()是组成煤的有机高分子的最主要元素。
A、碳
B、氢
C、氧
D、硫
参考答案:A
船务代理服务对象是承运人,而货运代理服务对象则是托运人或收货人。()
在下列的程序的横线处填上适当的语句,使该程序的输出为12。 #include<iostream.h> using namespace std; class Base public: int a,b; Base(int i)a=i; ; class Derived:public Base int a; public: Derived(int x):Base(x),b(x+1); void show() ______;//输出基类数据成员a的值。 cout<<b<<endl; ; void main() Derived d(1); d.show(); return 0;