预应力混凝土按施工方法可分为先张法预应力混凝土结构与后张法预应力混凝土结构。( )
参考答案:对
治疗风疹邪入气营证的首选方剂是()
A.清解透表汤
B.透疹凉解汤
C.凉营清气汤
D.清胃解毒汤
E.化斑解毒汤
有如下程序: #include<iostream> using namespace std; class Amount{ int amount; public: Amount(int n=0):amount(n){ } int getAmount( )const{return amount;} Amount&operator+=(Amount A) { amount+=a.amount; return; } }; int main( ){ Amount x(3),y(7); x+=y: cout<<x.getAmount( )<<endl; return 0; } 已知程序的运行结果是10,则下画线处缺失的表达式是
A.*this
B.this
C.&amount
D.amount