货物方面要考虑的因素是()。
A.货物来源
B.货物特性
C.吞吐量
D.货物流向
参考答案:B, C, D
一偏心受压构件,承受两组荷载设计值: (1)M=170kN·m,N=300kN; (2)M=170kN·m,N=280kN。 已经判定为大偏心受压,则在截面设计时,应考虑的荷载效应为( )。
A.(1)组
B.(2)组
C.(1)组和(2)组均需要考虑
有以下程序: #include<iostream> using namespace std; class sample private: int n; public: sample() sample(int m) n=m; sample add(sample s1,sample s2) this->n=s1.n+S2.n; return(*this); void disp() cout<<"n="<<n<<end1; ; int main() sample s1(10),s2(5),s3; s3.add(s1,s2); s3.disp(); retyrn 0; 程序运行后,输出的结果是
A.n=10
B.n=5
C.n=20
D.n=15