请使用VC6或使用【答题】菜单打开考生文件夹proj1下的工程proj1。程序中位于每个“//ERROR****found****”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为: Name:Smith Age:21 ID:99999 Cour

admin2015-06-27  19

问题 请使用VC6或使用【答题】菜单打开考生文件夹proj1下的工程proj1。程序中位于每个“//ERROR****found****”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为:
Name:Smith
Age:21
ID:99999
CourseNum:12
Record:970
注意:只修改每个“//ERROR****found****”下的那一行,不要改动程序中的其他内容。
#include
usingnamespacestd;
classStudentInfo
{
protected:
//ERROR**********found**********
charName[];
intAge;
intID;
intCourseNum;
floatRecord;
public:
//ERROR**********found**********
voidStudentInfo(char*name,intage,intID,intcourseNum,floatrecord);
//ERROR**********found**********
void~StudentInfo(){delete[]
Name;}
floatAverageRecord(){
returnRecord/CourseNum;
}
voidshow()const;
};
StudentInfo::StudentInfo(char*name,intage,intID,intcourseNum,floatrecord)
{
Name=strdup(name);
Age=age;
this->ID=ID;
CourseNum=courseNum;
Record=record;
}
voidStudentInfo::show()
{
cout<<"Name:"<<<"CourseNum:"<Record:"<}
intmain()
{
StudentInfost("Smith",21,99999,12,970);
st.show();
return0;
}

选项

答案(1)char *Name; (2)StudentInfo(char *name, int age, int ID, int courseNum, float record); (3)void StudentInfo::show() const

解析 (1)主要考查考生对字符指针的掌握,由构造函数的函数体Name = strdup(name),可知Name应该为字符指针。
(2)主要考查考生对构造函数的掌握,构造函数前不能添加任何返回类型。
(3)主要考查考生对const函数的掌握,由类的定义void show()const,可知show函数是const函数。
转载请注明原文地址:https://kaotiyun.com/show/B2BD777K
0

相关试题推荐
最新回复(0)