固定CO2灭火系统的钢瓶应每()做一次水压试验。
A.2年
B.3年
C.4年
D.8-10年
参考答案:D
下列食品中含氟量最高的是()
A.肉类
B.动物内脏
C.鱼
D.贝类
E.蛋类
有以下程序: #include <iostream> using namespace std; class myclass private:int a, b; public:void init( int i, int j ) a = i; b = j;friend int sum( myclass x ); ; int sum( myclass x ) return x.a + x.b; int main () myclass y;y.init( 15, 20 );cout<<sum( y )<<end1;return 0; 执行后的输出结果是( )。
A.15
B.20
C.5
D.35