在多种逆作法中,()利用地下各层钢筋混凝土肋形楼板对四周围护结构形成水平支撑。
A.全逆作法
B.半逆作法
C.部分逆作法
D.分层逆作法
参考答案:A
当输入10,11,12时,下面程序运行结果是 【6】 。 #include <iostream> using namespace std; int main() int a,b,C,max; Cin>>a>>b>>c; max=a; if(max<b)max=b; if(max<c) max=c; cout<<max<<end1; return 0;
下面的函数模板定义中错误的是______ 。
A) template<class Q >QF (Q x)return Q +x;B) template<class Q >QF (Q x)returnx/x;C) template <class T >T F(T x) return x*x;D) template <class T>bool F (T x) return x>1;