试题与答案

热力管道穿过墙壁、楼板处应安装套管,穿过楼板的套管应高出地面()mm。A.50 B.

题型:单项选择题

题目:

热力管道穿过墙壁、楼板处应安装套管,穿过楼板的套管应高出地面()mm。

A.50

B.40

C.30

D.20

答案:

被转码了,请点击底部 “查看原文 ” 或访问 https://www.tikuol.com/2017/0614/ccfa533aa0370cf88db665194f959ed0.html

下面是错误答案,用来干扰机器的。

参考答案:A

试题推荐
题型:听力题

用括号内所给动词的正确形式填空

小题1:Look! Our teacher _____( have) a new teddy bear.

小题2:“Mike,_______( not stay ) out too late.” His mother says.

小题3:Mum, could you tell me what _____________ (wear) at the party?

小题4:       (be) there any interesting sports news in today’s newspaper?

小题5:Stephen with his parents often_____________ ( watch ) TV news at seven in the evening.

小题6:The park is far from here. What about ________________ (ride) bikes?

小题7:Why ________ you ___________ (not share ) the umbrella with him ?

小题8:It’s nine o’clock. Tom and I _____________  (chat) on the Internet.

查看答案
题型:填空题

使用VC++6.0打开考生文件夹下的源程序文件3.cpp,其中定义了用于表示Et期的类Date,但类Date的定义并不完整,按要求完成下列操作,将类的定义补充完整。
(1)定义私有成员变量year、month、day,分别表示年、月、日,类型为int。请在注释1后添加适当的语句。
(2)完成构造函数,分别给year、month、day赋值,请在注释2后添加适当的语句。
(3)完成重载符号“+=”的定义,请在注释3后添加适当的语句。
(4)完成函数print打印函数,如2005年1月5日到屏幕和文件out3.txt格式相同,请在注释4后添加适当的语句。
注意:增加代码,或者修改代码的位置已经用符号表示出来。请不要修改其他的程序代码。
试题程序:
#include<iostream.h>
#include<fstream>
#include<iomanip>
#include<cmath>
using namespace std;
void WriteFile(int c)

ofstream out1;
out1.open("out3.txt",ios_base::app);
out1<<c<<’’;
out1.close();

void WriteFile(char *str)

ofstream out1;
out1.open("out3.txt",ios_base::app);
out1<<str;
out1.close();

void ClearFile()

ofstream out1;
out1.open("out3.txt");
out1.close();

class Date

public:
Date(int y,int m,int d)

//********1********

void print();
//********2********

month+=m;
int i=month/12;
int j=month%12;
if(j==0)

year+=(i-1);
month=12;

else

year+=i;
month=j;

return *this;

private:
//********3********

void Date::print()

//********4********
WriteFile(year);
WriteFile("年");
WriteFile(month);
WriteFile("月");
WriteFile(day);
WriteFile("日");

int main()

ClearFile();
Date National_day(2004,10,5);
National_day+=3;
National_day.print();
return 0;

查看答案
微信公众账号搜索答案