判断题 商业银行对企业非预期支出导致的借款需求。应结合企业的未来现金积累能力和负债能力决定贷款的期限。
判断题 经营杠杆是营业利润相对于销售量变化敏感度的指示剂。 经营杠杆越小,销售对营业利润的影响就越小。
单项选择题 有如下程序: #include<iostream> usingnamespacestd; classB{ public: B(intxx):x(xx){++count;x+=10;} virtualvoidshow( )const {cout<<count<<'<<x<<endl;} protected: staticintcount; private: intx; }; classD:publicB{ public: D(intxx,intyy):B(XX),y(yy){++count;y+= 100;) virtualvoidshow( )const {cout<<count<<'<<y<<endl); private: inty; }; intB::count==0; intmain( ){ B*ptr=newD(10,20); ptr->show( ); deleteptr; return0; } 运行时的输出结果是( )。