【计算机类职业资格】二级C++分类模拟93及答案解析.doc

上传人:eventdump275 文档编号:1324291 上传时间:2019-10-17 格式:DOC 页数:5 大小:76.50KB
下载 相关 举报
【计算机类职业资格】二级C++分类模拟93及答案解析.doc_第1页
第1页 / 共5页
【计算机类职业资格】二级C++分类模拟93及答案解析.doc_第2页
第2页 / 共5页
【计算机类职业资格】二级C++分类模拟93及答案解析.doc_第3页
第3页 / 共5页
【计算机类职业资格】二级C++分类模拟93及答案解析.doc_第4页
第4页 / 共5页
【计算机类职业资格】二级C++分类模拟93及答案解析.doc_第5页
第5页 / 共5页
亲,该文档总共5页,全部预览完了,如果喜欢就下载吧!
资源描述

1、二级 C+分类模拟 93 及答案解析(总分:100.00,做题时间:90 分钟)一、程序改错题(总题数:1,分数:30.00)1.使用 VC6 打开 下的源程序文件 modi1.cpp。本程序要求输入一字符串,然后将其中的小写字母改变成大写字母,字符可能输入多行,当输入字符“?”时,默认字符输入结束,最后把结果输出到界面。 注意:不要改动 main 函数,不能增行或删行,也不能更改程序的结构,错误的语句在/*error*的下面。 #include iostream.h void main( ) int i = 0 ; char str120; cout “Enter a string endw

2、ith “?“.“ endl; /*error* cin.getline(str, 120); /*error* while (str) /*error* if (stri = “a“) stri = stri -“a“ + “A“ ; i+; (分数:30.00)_二、程序填空题(总题数:1,分数:30.00)2.使用 VC6 打开 下的源程序文件 modi2.cpp。完成函数 fun(char*str,char*s)空出部分。函数fun(cha*sir,char* s)的功能是:将在字符串 str 中下标为偶数位置上的字符,紧随其后重复出现一次,放在一个新串 s 中,s 中字符按原字符串中

3、字符的顺序排列。(注意 0 为偶数) 例如:当 str 中的字符串为:“abcdef“时,s 中的字符串应为:“aaccee“。 注意:不要改动 main()函数,不得增行或删行,也不得更改程序的结构。 #include iostream.h void fun (char* str, char* s) void main() char str100, s100; cout “Please enter string string : “ endl; cin.getline(str, 100); fun(str, s); cout “The result is: “ s (分数:30.00)_三、

4、程序设计题(总题数:1,分数:40.00)3.使用 VC6 打开 下的源程序文件 modi3.cpp,其中定义了用于表示日期的类 Date,但类 Date 的定义并不完整,按要求完成下列操作,将类的定义补充完整。 (1)定义私有成员变量 year、month、day,分别表示年、月、日,类型为 int。请在注释/*1*后添加适当的语句。 (2)完成构造函数,分别给 year、month、day 赋值,请在注释/*2*后添加适当的语句。 (3)完成重载符号“+=”的定义,请在注释/*3*后添加适当的语句。 (4)完成 print()打印函数,如 2008 年 8 月 8 日到屏幕和文件 modi

5、3.txt 格式相同,请在注释/*4*后添加适当的语句。 注意:仅在函数指定位置添加语句,请勿改动主函数 main 与其他函数中的任何内容。 #includeiostream.h #includefstream #includeiomanip #includecmath using namespace std; void WriteFile(int c) ofstream out1; out1.open(“modi3.txt“,ios_base:app); out1.close(); void WriteFile(char* str) ofstream out1; out1.open(“mod

6、i3.txt“,ios _base:app); out1 (分数:40.00)_二级 C+分类模拟 93 答案解析(总分:100.00,做题时间:90 分钟)一、程序改错题(总题数:1,分数:30.00)1.使用 VC6 打开 下的源程序文件 modi1.cpp。本程序要求输入一字符串,然后将其中的小写字母改变成大写字母,字符可能输入多行,当输入字符“?”时,默认字符输入结束,最后把结果输出到界面。 注意:不要改动 main 函数,不能增行或删行,也不能更改程序的结构,错误的语句在/*error*的下面。 #include iostream.h void main( ) int i = 0 ;

7、 char str120; cout “Enter a string endwith “?“.“ endl; /*error* cin.getline(str, 120); /*error* while (str) /*error* if (stri = “a“) stri = stri -“a“ + “A“ ; i+; (分数:30.00)_正确答案:()解析:(1)cin.getlime(str,120,“?“); (2)while(stri) (3)if (stri = “a“ ”。 (2)第 2 个标识下的“while(str)”语句应该是判断字符串 str 中的每一个字符是否为尾符,

8、若不是尾符在循环中判断每一个字符是否为小写,若为小写,转换。所以应该修改为“while(stri)”。 (3)第 3 个标识下的“if(stri=“a“)”语句是判断字符 stri是否为小写字符,而现有的语句只是判断字符是否大于“a“,但是小写字符应该是“a“到“z“,所以修改为“if(stri=“a“ cout “Please enter string string : “ endl; cin.getline(str, 100); fun(str, s); cout “The result is: “ s (分数:30.00)_正确答案:()解析:int i; for(i=0; stri!=

9、0;i+) /循环判断每一个字符 if(i%2=0) /判断字符串中下标为偶数位置 si=stri; si+1=stri; si+2=“/0“;/新串添加尾符 答案考生文件夹 解析 (1)该程序功能是找出在字符串中下标为偶数位置上的字符,紧随其后重复出现一次,放在一个新串。它的解题思路,解题过程利用 if 条件判断表达式选择符合条件的字符,然后将符合条件的字符放入指定的字符串。 (2)从已给部分源程序的 main 主函数开始入手,核心函数 void fun(char*str,char* s)中的 str 参数为输入的字符串,其中 s 为新串。 (1)判断一个字符串中的某一字符下标 i 是否为偶

10、数,可用“i%2=0”来判断。 (2)对串 str 中各个字符串逐个进行考查,满足条件的字符就顺序放在新串 s 中,否则就不存放。 (3)所有字符处理完后,记得在新串 s 的末尾加上结束符“/0“”。三、程序设计题(总题数:1,分数:40.00)3.使用 VC6 打开 下的源程序文件 modi3.cpp,其中定义了用于表示日期的类 Date,但类 Date 的定义并不完整,按要求完成下列操作,将类的定义补充完整。 (1)定义私有成员变量 year、month、day,分别表示年、月、日,类型为 int。请在注释/*1*后添加适当的语句。 (2)完成构造函数,分别给 year、month、day

11、 赋值,请在注释/*2*后添加适当的语句。 (3)完成重载符号“+=”的定义,请在注释/*3*后添加适当的语句。 (4)完成 print()打印函数,如 2008 年 8 月 8 日到屏幕和文件 modi3.txt 格式相同,请在注释/*4*后添加适当的语句。 注意:仅在函数指定位置添加语句,请勿改动主函数 main 与其他函数中的任何内容。 #includeiostream.h #includefstream #includeiomanip #includecmath using namespace std; void WriteFile(int c) ofstream out1; out1

12、.open(“modi3.txt“,ios_base:app); out1.close(); void WriteFile(char* str) ofstream out1; out1.open(“modi3.txt“,ios _base:app); out1 (分数:40.00)_正确答案:()解析:(1)添加语句:int year,month,day; (2)添加语句:year=y;month=m;day=d; (3)添加语句:Date 答案考生文件夹 解析 在 VC 环境下打开程序,根据题干给出的几条功能要求,对程序中给出注释下的内容逐个补全或修改。从已给定源程序的 main 主函数开始

13、入手,可以看出程序通过调用类 Date 和函数 print 实现各种输出操作。 (1)题目 1 要求“定义私有成员变量 year、month、day”。在 C+程序的 private 区域中添加变量year、month、day 的定义,即在第 1 个标识下添加“int year,month,day;”。 (2)题目 2 要求“完成构造函数,分别给 year、month、day 赋值”。在程序中“Date(int y,int m,int d)”的构造函数中添加给 year、month、day 赋值的语句,即在第 2 个标识下添加“year=y;month=m;day=d;”。(3)题目 3 要求“完成重载符号“+=”的定义”。在 C+中,运算符重载的定义方法是定义一个重载运算符的函数,格式为函数 operator+重载运算符号+,所以这里补全“Date& operator+=(int m)”。 (4)题目 4 要求“完成函数 print()打印函数”。在 C+中的 print()函数中补全其打印功能,即在第四个标识下添加“cout year ”年” month “月“ day ”日”

展开阅读全文
相关资源
猜你喜欢
  • JUS G C1 300-1982 Plastics Polyetilene for pipes and fittings Clasification and quality requirement《塑料 管道和配件用聚乙烯 分类和质量要求》.pdf JUS G C1 300-1982 Plastics Polyetilene for pipes and fittings Clasification and quality requirement《塑料 管道和配件用聚乙烯 分类和质量要求》.pdf
  • JUS G C1 300-1992 Plastics - Polyethylene (PE) for pipes and fittings - Classification and quality requirements《塑料 管道和配件用聚乙烯(PE) 分类和质量要求》.pdf JUS G C1 300-1992 Plastics - Polyethylene (PE) for pipes and fittings - Classification and quality requirements《塑料 管道和配件用聚乙烯(PE) 分类和质量要求》.pdf
  • JUS G C1 303-1996 Plastics - Determination vinylidene unsaturation in polyethylene - Infrared spectrophotometric method《塑料 聚乙烯中不饱和亚乙烯基的测定 红外分光光度法》.pdf JUS G C1 303-1996 Plastics - Determination vinylidene unsaturation in polyethylene - Infrared spectrophotometric method《塑料 聚乙烯中不饱和亚乙烯基的测定 红外分光光度法》.pdf
  • JUS G C1 310-1991 Plastics Polypropylene (PP) and propylene - copolymer thermoplastic Classification designation and determination of properties《塑料 聚丙烯(PP)和丙烯-共聚物热塑塑料 特性的分类、标示和测定》.pdf JUS G C1 310-1991 Plastics Polypropylene (PP) and propylene - copolymer thermoplastic Classification designation and determination of properties《塑料 聚丙烯(PP)和丙烯-共聚物热塑塑料 特性的分类、标示和测定》.pdf
  • JUS G C1 320-1983 Plastics Homopolymer and copolymer resins of vinyl chloride Designation《塑料 氯乙烯的均聚物和共聚物树脂 标示》.pdf JUS G C1 320-1983 Plastics Homopolymer and copolymer resins of vinyl chloride Designation《塑料 氯乙烯的均聚物和共聚物树脂 标示》.pdf
  • JUS G C1 325-1991 Plastics Unplasticized compounds of homopolymers and copolymers of vinyl chloride Classification designation and determination of properties《塑料 氯乙烯的均聚物和共聚物的不增塑化合物.pdf JUS G C1 325-1991 Plastics Unplasticized compounds of homopolymers and copolymers of vinyl chloride Classification designation and determination of properties《塑料 氯乙烯的均聚物和共聚物的不增塑化合物.pdf
  • JUS G C1 329-1982 Plastics PVC-plastisols types AP TO PT KZ AZand Dl《塑料 PVC 塑溶胶型AP;TO;PT;KZ;AZ和DI》.pdf JUS G C1 329-1982 Plastics PVC-plastisols types AP TO PT KZ AZand Dl《塑料 PVC 塑溶胶型AP;TO;PT;KZ;AZ和DI》.pdf
  • JUS G C1 330-1991 Plastics Plastlclzed compounds of homopolymers and copolymers of vinyl chloride (PVC-P) Classification designation and determination of properties《塑料 氯乙烯的均聚物和共聚物(.pdf JUS G C1 330-1991 Plastics Plastlclzed compounds of homopolymers and copolymers of vinyl chloride (PVC-P) Classification designation and determination of properties《塑料 氯乙烯的均聚物和共聚物(.pdf
  • JUS G C1 350-1992 Plastics Polystyrene (PS) moulding and extrusion materials Classification designation and determination of properties《塑料 聚苯乙烯(PS)模塑和冲压材料 特性的分类、标示和测定》.pdf JUS G C1 350-1992 Plastics Polystyrene (PS) moulding and extrusion materials Classification designation and determination of properties《塑料 聚苯乙烯(PS)模塑和冲压材料 特性的分类、标示和测定》.pdf
  • 相关搜索

    当前位置:首页 > 考试资料 > 职业资格

    copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
    备案/许可证编号:苏ICP备17064731号-1