1、二级 C+机试-128 及答案解析(总分:100.00,做题时间:90 分钟)一、1基本操作题(总题数:1,分数:30.00)1.请使用“答题”菜单或使用 VC6 打开考生文件夹 proj1 下的工程 proj1,此工程包含程序文件main.cpp,其中有类 Book(“书”)和主函数 main 的定义。程序中位于每个/ERROR*found*下的语句行有错,请加以改正。改正后程序的输出应该是:书名:C+语言程序设计 总页数:299已把“C+语言程序设计“翻页到第 50 页已把“C+语言程序设计“翻页到第 51 页已把书合上。书是合上的。已把“C+语言程序设计“翻页到第 1 页注意:只能修改每
2、个/ERROR*found*下的那一行,不要改动程序中的其他内容。/ 源程序#includeiostreamusing namespace std;class Bookchar*title;int num_pages; /页数int cur_page; /当前打开页面的页码,0 表示书未打开public:Book(const char*theTitle,int pages):num_pages(pages)/ERROR*found*title=new charstrlen(theTitle);strcpy(title,theTitle);coutendl“书名:“title“总页数:“num_
3、pages;Book()deletetitle;/ERROR*found*bool isOpen() const return num_pages!=0; /书打开时返回 true,否则返回 falseint numOfPages() const return num_pages; /返回书的页数int currentPage() const return cur_page; /返回打开页面的页码void openAtPage(int page_no) /把书翻到指定页coutendl;if(page_no1 1| page_nonum_pages)cout“无法翻到第“cur_page“页。
4、“;close();elsecur_page=page_no;cout“已把“ “ticle“ “翻到第“cur_page“页“;void openAtPrevPage()openAtPage(cur_page-1);/把书翻到上一页void openAtNextPage()openAtPage(cur_page+1);/把书翻到下一页void close() /把书合上coutendl;if(! isOpen()cout“书是合上的。“;else/ERROR*found*num_pages=0;cout“已把书合上。“;coufendl;;int main()Book book(“C+语言程
5、序设计“,299);book.openAtPage(50);book.openAtNextPage();book.close();book.close();book.openAtNextPage();return 0:(分数:30.00)_二、2简单应用题(总题数:1,分数:40.00)2.请使用“答题”菜单或使用 VC6 打开考生文件夹 proj2 下的工程 proj2。此工程包含程序文件main.cpp,其中有类 AutoMobile(“汽车”)及其派生类 Car(“小轿车”)、Truck(“卡车”)的定义,还有主函数 main 的定义。请在程序中/*found*下的画线处填写适当的代码,
6、然后删除横线,以实现上述类定义。此程序的正确输出结果应为:车牌号:冀 ABC1234 品牌 ForLand 类别:卡车当前档位:0 最大载重量:1车牌号:冀 ABC1234 品牌 ForLand 类别:卡车当前档位:2 最大载重量:1车牌号:沪 XY25678 品牌 QQ 类别:小轿车当前档位:0 座位数:5车牌号:沪 XY25678 品牌 QQ 类别:小轿车当前档位:-1 座位数:5注意:只能在画线处填写适当的代码,不要改动程序中的其他内容,也不能删除或移动/*found*。/源程序#includeiostream#include iomanip#include cmathusing nam
7、espace std;class AutoMobile /“汽车“类char*brand; /汽车品牌char*number; /车牌号int speed; /档位:1、2、3、4、5,空档:0,倒档:-1public:AutoMobile(const char*the_brand,const char*the_number): speed(0)/*found*_;strcpy(brand,the_brand);number=new charstrlen(the_nurnber)+1;/*found*_;AutoMobile()delete brand; delete number;const
8、 char*theBrand() const return brand; /返回品牌名称const char*theNumber() const return number; /返回车牌号int currentSpeed() const return speed; /返回当前档位void changeGearTo(int the_speed) /换到指定档位if(speed=-1speed=5)speed=the_speed;virtual const char*category() const=0; /类别:卡车、小轿车等virtual void show() constcout“车牌号:“
9、theNumber()“品牌:“theBrand()/*found*“类别:“_“当前档位:“currentSpeed();class Car: public AutoMobile/“小汽车“类int seats;/座位数public:Car(const char*the_brand,const char*the_number,int the_seats): AutoMobile(the_brand,the_number),seats(the_seats)int numberOfSeat() const return seats,/返回座位数const char*category() cons
10、treturn“小轿车“;/返回汽车类别void show() constAutoMobile:show();cout“座位数:“numberOfSeat()endl;;class Truck: public AutoMobilel/“卡车“类int max_load;/最大载重量public:Truck(const char*the_brand,const char*the_number,int the_max_load): AutoMobile(the_brand,the_number),max_load(the_max_load)int maxLoad() const return ma
11、x_load;/返回最大载重量const char*category()const return“卡车“;/返回汽车类别void show() const/调用基类的 show()函数/*found*cout“最大载重量:“maxLoad()endl;int main()Truck truck(“ForLand“,“冀 ABC1234“,12);truck.show();truck.changeGearTo(2);truck.show();Car car(“QQ“,“沪 XY25678“,5);car.show();car.changeGearTo(-1);car.show();coutend
12、l;return 0:(分数:40.00)_三、3综合应用题(总题数:1,分数:30.00)3.请使用“答题”菜单或使用 VC6 打开考生文件夹 proj3 下的工程 proj3,其中声明了 MyString 类。MyString 是一个用于表示字符串的类。成员函数 startsWith 的功能是判断此字符串是否以指定的前缀开始,其参数 s 用于指定前缀字符串。如果参数 s 表示的字符串是 MyString 对象表示的字符串的前缀,则返回 true;否则返回 false。注意,如果参数 s 是空字符串或等于 MyString 对象表示的字符串,则结果为 true。例如:字符串“abc“是字符串
13、“abcde“的前缀,而字符串“abd“不是字符串“abcde“的前缀。请编写成员函数startsWith。在 main 函数中给出了一组测试数据,此情况下程序的输出应该是:s1=abcdes2=abcs3=abds4=s5=abcdes6=abcdefs1 startsWith s2:trues1 startsWith s3 falses1 startsWith s4 trues1 startsWith s5 f trues1 startsWith s6 false要求:补充编制的内容写在/*333*/*666*两行之间,不得修改程序的其他部分。注意:程序最后已经将结果输出到文件 out.d
14、at 中。输出函数 writeToFile 已经编译为 obj 文件,并且在本程序中调用。/源程序#include“MyString.h“bool MyString:startsWith(const char*s)const/*333*/*666*int main()char s1=“abcde“;char s2=“abc“;char s3=“abd“;char s4=“ “;char s5=“abcde“;char s6=“abcdef“;MyString str(s1);cout“s1=“s1endl“s2=“s2endl“s3=“s3endl“s4=“s4endl“s5=“s5endl“
15、s6=“s6endl:coutboolalpha“s1 startsWith s2:“str.startsWith(s2)endl“s1 startsWith s3:“str.startsWith(s3)endl“s1 startsWith s4:“str.startsWith(s4)endl“s1 startsWith s5:“str.startsWith(s5)endl“s1 startsWith s6:“str.startsWith(s6)endl;/writeToFile(“K:/b10/61000101/“);return 0:(分数:30.00)_二级 C+机试-128 答案解析(
16、总分:100.00,做题时间:90 分钟)一、1基本操作题(总题数:1,分数:30.00)1.请使用“答题”菜单或使用 VC6 打开考生文件夹 proj1 下的工程 proj1,此工程包含程序文件main.cpp,其中有类 Book(“书”)和主函数 main 的定义。程序中位于每个/ERROR*found*下的语句行有错,请加以改正。改正后程序的输出应该是:书名:C+语言程序设计 总页数:299已把“C+语言程序设计“翻页到第 50 页已把“C+语言程序设计“翻页到第 51 页已把书合上。书是合上的。已把“C+语言程序设计“翻页到第 1 页注意:只能修改每个/ERROR*found*下的那一
17、行,不要改动程序中的其他内容。/ 源程序#includeiostreamusing namespace std;class Bookchar*title;int num_pages; /页数int cur_page; /当前打开页面的页码,0 表示书未打开public:Book(const char*theTitle,int pages):num_pages(pages)/ERROR*found*title=new charstrlen(theTitle);strcpy(title,theTitle);coutendl“书名:“title“总页数:“num_pages;Book()delete
18、title;/ERROR*found*bool isOpen() const return num_pages!=0; /书打开时返回 true,否则返回 falseint numOfPages() const return num_pages; /返回书的页数int currentPage() const return cur_page; /返回打开页面的页码void openAtPage(int page_no) /把书翻到指定页coutendl;if(page_no1 1| page_nonum_pages)cout“无法翻到第“cur_page“页。“;close();elsecur_
19、page=page_no;cout“已把“ “ticle“ “翻到第“cur_page“页“;void openAtPrevPage()openAtPage(cur_page-1);/把书翻到上一页void openAtNextPage()openAtPage(cur_page+1);/把书翻到下一页void close() /把书合上coutendl;if(! isOpen()cout“书是合上的。“;else/ERROR*found*num_pages=0;cout“已把书合上。“;coufendl;;int main()Book book(“C+语言程序设计“,299);book.ope
20、nAtPage(50);book.openAtNextPage();book.close();book.close();book.openAtNextPage();return 0:(分数:30.00)_正确答案:(1)title=new charstrlen(theTitle)+1;2)bool isOpen()const return cur_page!=0;3)cur_page=0;)解析:1)字符数组 title 分配内存空间,注意长度一定是 strlen(theTitle)+1,最后一个为字符结束符。2)判断书是否为打开,cur_page=0 时,表示书未打开,所以在 isOpen
21、函数中,应该是 cur_page 而不是num_pages 为 0。3)在 close 函数中,如果 isOpen 为真,则将 cur_page 设置为 0。二、2简单应用题(总题数:1,分数:40.00)2.请使用“答题”菜单或使用 VC6 打开考生文件夹 proj2 下的工程 proj2。此工程包含程序文件main.cpp,其中有类 AutoMobile(“汽车”)及其派生类 Car(“小轿车”)、Truck(“卡车”)的定义,还有主函数 main 的定义。请在程序中/*found*下的画线处填写适当的代码,然后删除横线,以实现上述类定义。此程序的正确输出结果应为:车牌号:冀 ABC123
22、4 品牌 ForLand 类别:卡车当前档位:0 最大载重量:1车牌号:冀 ABC1234 品牌 ForLand 类别:卡车当前档位:2 最大载重量:1车牌号:沪 XY25678 品牌 QQ 类别:小轿车当前档位:0 座位数:5车牌号:沪 XY25678 品牌 QQ 类别:小轿车当前档位:-1 座位数:5注意:只能在画线处填写适当的代码,不要改动程序中的其他内容,也不能删除或移动/*found*。/源程序#includeiostream#include iomanip#include cmathusing namespace std;class AutoMobile /“汽车“类char*br
23、and; /汽车品牌char*number; /车牌号int speed; /档位:1、2、3、4、5,空档:0,倒档:-1public:AutoMobile(const char*the_brand,const char*the_number): speed(0)/*found*_;strcpy(brand,the_brand);number=new charstrlen(the_nurnber)+1;/*found*_;AutoMobile()delete brand; delete number;const char*theBrand() const return brand; /返回品
24、牌名称const char*theNumber() const return number; /返回车牌号int currentSpeed() const return speed; /返回当前档位void changeGearTo(int the_speed) /换到指定档位if(speed=-1speed=5)speed=the_speed;virtual const char*category() const=0; /类别:卡车、小轿车等virtual void show() constcout“车牌号:“theNumber()“品牌:“theBrand()/*found*“类别:“_“
25、当前档位:“currentSpeed();class Car: public AutoMobile/“小汽车“类int seats;/座位数public:Car(const char*the_brand,const char*the_number,int the_seats): AutoMobile(the_brand,the_number),seats(the_seats)int numberOfSeat() const return seats,/返回座位数const char*category() constreturn“小轿车“;/返回汽车类别void show() constAuto
26、Mobile:show();cout“座位数:“numberOfSeat()endl;;class Truck: public AutoMobilel/“卡车“类int max_load;/最大载重量public:Truck(const char*the_brand,const char*the_number,int the_max_load): AutoMobile(the_brand,the_number),max_load(the_max_load)int maxLoad() const return max_load;/返回最大载重量const char*category()const
27、 return“卡车“;/返回汽车类别void show() const/调用基类的 show()函数/*found*cout“最大载重量:“maxLoad()endl;int main()Truck truck(“ForLand“,“冀 ABC1234“,12);truck.show();truck.changeGearTo(2);truck.show();Car car(“QQ“,“沪 XY25678“,5);car.show();car.changeGearTo(-1);car.show();coutendl;return 0:(分数:40.00)_正确答案:(1)brand=new c
28、harstrlen(the_brand)+1;2)strcpy(number,the_number);3)“类别:“category()“当前档位:“currentSpeed();4)AutoMobile:show();)解析:1)后面跟了 strcpy(brand,the_brand);语句,前面显然是该对 brand 字符数组定义并分配内存空间。2)前面有 number 的定义和内存分配,后面就该为 number 数组赋值,所以使用 strcpy 函数将形参the_number 的值赋给 number。3)打印类别,前面有 catgory 函数,所以直接调用该函数得到汽车类别。4)在派生类
29、中调用基类函数,所以在前面要使用域作用符,类名:。三、3综合应用题(总题数:1,分数:30.00)3.请使用“答题”菜单或使用 VC6 打开考生文件夹 proj3 下的工程 proj3,其中声明了 MyString 类。MyString 是一个用于表示字符串的类。成员函数 startsWith 的功能是判断此字符串是否以指定的前缀开始,其参数 s 用于指定前缀字符串。如果参数 s 表示的字符串是 MyString 对象表示的字符串的前缀,则返回 true;否则返回 false。注意,如果参数 s 是空字符串或等于 MyString 对象表示的字符串,则结果为 true。例如:字符串“abc“是
30、字符串“abcde“的前缀,而字符串“abd“不是字符串“abcde“的前缀。请编写成员函数startsWith。在 main 函数中给出了一组测试数据,此情况下程序的输出应该是:s1=abcdes2=abcs3=abds4=s5=abcdes6=abcdefs1 startsWith s2:trues1 startsWith s3 falses1 startsWith s4 trues1 startsWith s5 f trues1 startsWith s6 false要求:补充编制的内容写在/*333*/*666*两行之间,不得修改程序的其他部分。注意:程序最后已经将结果输出到文件 ou
31、t.dat 中。输出函数 writeToFile 已经编译为 obj 文件,并且在本程序中调用。/源程序#include“MyString.h“bool MyString:startsWith(const char*s)const/*333*/*666*int main()char s1=“abcde“;char s2=“abc“;char s3=“abd“;char s4=“ “;char s5=“abcde“;char s6=“abcdef“;MyString str(s1);cout“s1=“s1endl“s2=“s2endl“s3=“s3endl“s4=“s4endl“s5=“s5en
32、dl“s6=“s6endl:coutboolalpha“s1 startsWith s2:“str.startsWith(s2)endl“s1 startsWith s3:“str.startsWith(s3)endl“s1 startsWith s4:“str.startsWith(s4)endl“s1 startsWith s5:“str.startsWith(s5)endl“s1 startsWith s6:“str.startsWith(s6)endl;/writeToFile(“K:/b10/61000101/“);return 0:(分数:30.00)_正确答案:(/*333*if(s=NULL) return true;elsefor(int i=0;istrlen(s);i+)if(stri!=si)return false;return true:/*666*)解析:解析 首先判断 s 是否为空,如果是,直接返回为真;否则,以 s 的长度,采用倒数的办法,从最后一个元素开始依次比较 s 的元素同 str 的元素是否相等,如果不相等则直接返回 false,直到比较完,返回为 true。注意下标二者分别为 size-1-1 和 strlen(s)-i-1。