于2005年1月1日起停止使用的名称是药品的( )
A.通用名B.曾用命C.商品名D.化学名E.汉语拼音
参考答案:B
下列属于债的相对消灭原因的是( )。
A.债权转让
B.债务更新
C.混同
D.解除合同
在下列的程序的横线处填上适当的语句,使该程序的输出为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;