广州鳄鱼公园拥有鳄鱼近10万条,占全国鳄鱼总量的比例是多少?()
A、30%
B、50%
C、70%
D、90%
参考答案:C
就单台机器设备评估而言,主要采用的基本方法有()。
A.市场法
B.成本法
C.收益法
D.路线价法
E.还原法
有以下程序: #include<iostream> using namespace std; class R { public: R(int r1,int r2) { R1=r1; R2=r2; } void print(); void print0const; private:int R1,R2; }; void R::print() {cout<<R1<<","<<R2<<endl; } void R::print() const { cout<<Rl<<","<<R2<<endl; } int main() { R a(5,4); const R b(20,52); b.print(); return 0; } 执行后的输出结果是( )。
A.5,4
B.20,52
C.0,0
D.4,5