请打开考生文件夹下的解决方案文件proj2,此工程中包含一个源程序文件main.epp,其中有“房间”类Room及其派生出的“办公室”类Office的定义,还有主函数main的定义。请在程序中“//****found****”下的横线处填写适当的代码并删除

admin2020-12-21  40

问题 请打开考生文件夹下的解决方案文件proj2,此工程中包含一个源程序文件main.epp,其中有“房间”类Room及其派生出的“办公室”类Office的定义,还有主函数main的定义。请在程序中“//****found****”下的横线处填写适当的代码并删除横线,以实现上述类定义。此程序的正确输出结果应为:
  办公室房间号:308
  办公室长度:5.6
  办公室宽度:4.8
  办公室面积:26.88
  办公室所属部门:会计科
  注意:只能在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“//****found****。
  #include
  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()const{return room_no;}
  //返回房间号
    double theLength()const{return length;}//返回房间长度
    double theWidth()const{return width;}//返回房间宽度
    //**********found**********
    double theArea()const{________}//返回房间面积(矩形面积)
    };
    class Office:public Room{//“办公室”类
    char *depart;//所属部门
    public:
    Office(int the_room_no,double the_length,double the_width,const char *the_depart)
    //**********found**********
: ________{
depart=new char[strlen(the_depart)+1];
    //**********found**********
strcpy(________);
}
~Office(){delete[]depart;}
const char *theDepartment()const{return depart;}//返回所属部门
    };
    int rain(){
    //**********found**********
    Office________;
    cout<<“办公室房间号:”<<an_office.theRoomNo()<<endl
    <<“办公室长度:”<<an office.theLength()<<endl
    <<“办公室宽度:”<<an_office.theWidth()<<endl
    <<“办公室面积:”<<an_office.theArea()<<endl
    <<“办公室所属部门:”<<an_office.theDepartment()<<endl;
    return 0;
    }

选项

答案(1)return length *width; (2)Room(the_room_n0,the_length,the_width) (3)depart,the_depart (4)an_office(308,5,6,4,8,”会计科”)

解析 主要考查的是Room类及其派生类Office,其中涉及构造函数,const函数,动态数组,析构函数。strcpy函数用于复制字符串,其格式为:strcpy(字符串1,字符串2);。 (1)主要考查考生对成员函数的掌握,题目要求返回房间面积(矩形面积)。由此可知空格部分要填写的是一个return语句,返回房间面积,也就是length *width,因此可以得出程序return length *width;。 (2)主要考查考生对派生类的构造函数的掌握,派生类的构造函数要使用成员列表初始法先对基类进行初始化。 (3)考查strcpy函数,由前一条语句“depart=newchar[strlen(the_depart)+1];”可知,程序给depart分配了长度为the_depart串长加1的空间,因此要复制字符串the_depart串到depart,直接填写“strcpy(depart,the_depart)”即可。(4)主要考查考生对类的掌握,题目要求输出的结果为:办公室房间号:308办公室长度:5.6办公室宽度:4.8办公室面积:26.88办公室所属部门:会计科。由Office类的构造函数可知要定义的一个Office类的对象为an_office(308,5.6,4.8,“会计科”)。
转载请注明原文地址:https://jikaoti.com/ti/yYl0FFFM
0

最新回复(0)