根据运营经验,排水沟底部或疏水盲沟中心深度应在隧道铺底或仰拱底面以下至少()。
A、0.2m
B、0.3m
C、0.4m
D、0.5m
参考答案:D
在 Internet 的域名系统中,用来表示商业组织的是______。
A.EDU
B.COM
C.INT
D.NET
有如下程序:
#include<iostream>
using namespace std;
class ONE{
int c;
public:
ONE( ):c(0){ cout<<1;}
ONE(int n):c(n){ cout<<2;}
};
class TWO{
ONE one1;
ONE one2;
TWO(int m):one2(m){ cout<<3;}
int main( ){
TWO t(4);
return 0;
}
运行时的输出结果是()
A.3
B.23
C.123
D.213