问题 选择题
已知当x=-2时,分式
x-b
x-a
无意义,x=4时,此分式的值为0,则a+b的值等于(  )
A.-6B.-2C.6D.2
答案

由分母x-a=-2-a=0则a=-2.

由分子x-b=0得4-b=0解得:b=4.

所以a+b=-2+4=2.故选D.

问答题

请使用VC6或使用[答题]菜单打开考生文件夹proj2下的工程proj2。此工程中包含一个源程序文件main.cpp,其中有“房间”类Room及其派生出的“办公室”类Office的定义,还有主函数main的定义。请在程序中“//****found****”下的横线处填写适当的代码并删除横线,以实现上述类定义。此程序的正确输出结果应为:
办公室房间号:308
办公室长度:5.6
办公室宽度:4.8
办公室面积:26.88
办公室所属部门:会计科
注意:只能在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“//****found****”。
#include<iostream>
using namespace std;
class Room //“房间”类
int room no; //房间号
double length; //房间长度(m)
double width; //房间宽度(m)
public:
Room(int the room_no.double the_length,double the_width):room_no(the_room_no),length(the_length),width(the width)
int theRoomNo()constreturn room_no;
//返回房间号
double theLength()const returnlength;) //返回房间长度
double theWidth()const returnwidth; //返回房间宽度
//**********found**********
double theArea()const______
//返回房间面积(矩形面积)
;
class Office:public Room //“办公室”类char*depart; //所属部门
public:
Office (int the_room_no.double the_length,double the_width,constchar*the_depart)
//**********found**********
:______
depart=new char[strlen(the depart)+1];
//**********found**********
strcpy(______);

~Office()delete[]depart;
const char*theDepartment()constreturn depart;)//返回所属部门
;
int main()
//**********found**********
Office______;
cout<<"办公室房间号:"<<an office.theRoomNo()<<endl
<<"办公室长度:"<<an office.the-Length()<<endl
<<"办公室宽度:"<<an office.the-Width()<<endl
<<"办公室面积:"<<an_office.theArea()<<endl
<<"办公室所属部门:"<<an office.theDepartment()<<endl;
return 0;

单项选择题