【计算机类职业资格】计算机三级(信息管理技术)上机考试22及答案解析.doc

上传人:testyield361 文档编号:1337212 上传时间:2019-10-17 格式:DOC 页数:2 大小:27.50KB
下载 相关 举报
【计算机类职业资格】计算机三级(信息管理技术)上机考试22及答案解析.doc_第1页
第1页 / 共2页
【计算机类职业资格】计算机三级(信息管理技术)上机考试22及答案解析.doc_第2页
第2页 / 共2页
亲,该文档总共2页,全部预览完了,如果喜欢就下载吧!
资源描述

1、计算机三级(信息管理技术)上机考试 22 及答案解析(总分:-1.00,做题时间:90 分钟)1.函数 ReadDat()的功能是实现从文件 IN5.DAT 中读取一篇英文文章存入到字符串数组 xx 中。请编制函数 ConvertCharA(),该函数的功能是:以行为单位把字符串中的所有小写字母改写成该字母的下一个字母,如果是字母 z,则改写成字母 a。大写字母仍为大写字母,小写字母仍为小写字母,其他字符不变。把已处理的字符串仍按行重新存入字符串数组 xx 中,最后调用函数 WriteDat()把结果 xx 输出到文件OUT5.DAT 中。 例如,原文:Adb.Bcdza abck.LLhj

2、结果:Aec.Bdeab bcdl.LLik 原始数据文件存放的格式是:每行的宽度均小于 80 个字符,含标点符号和空格。 注意:部分源程序已给出。 请勿改动主函数main()、读函数 ReadDat()和写函数 WriteDat()的内容。 试题程序: #include #include #include char xx5080; int maxline = 0;/* 文章的总行数 */ int ReadDat(void); void WriteDat(void); void ConvertCharA(void) main() clrscr(); if(ReadDat() printf(“数

3、据文件 IN5.DAT 不能打开!n007“); return; ConvertCharA(); WriteDat(); int ReadDat(void) FILE *fp; int i =0; char *p; if(fp = fopen(“IN5.DAT“, “r“) = NULL) return 1; while(fgets(xxi, 80, fp) !=NULL) p = strchr(xxi, n); if(p) *p = 0; i+; maxline = i; fclose(fp); return 0; void WriteDat(void) FILE *fp; int i; c

4、lrscr(); fp = fopen(“OUT5.DAT“, “w“); for(i = 0; i maxline; i+) printf(“%sn“, xxi); fprintf(fp, “%sn“, xxi); fclose(fp); (分数:-1.00)_计算机三级(信息管理技术)上机考试 22 答案解析(总分:-1.00,做题时间:90 分钟)1.函数 ReadDat()的功能是实现从文件 IN5.DAT 中读取一篇英文文章存入到字符串数组 xx 中。请编制函数 ConvertCharA(),该函数的功能是:以行为单位把字符串中的所有小写字母改写成该字母的下一个字母,如果是字母 z,

5、则改写成字母 a。大写字母仍为大写字母,小写字母仍为小写字母,其他字符不变。把已处理的字符串仍按行重新存入字符串数组 xx 中,最后调用函数 WriteDat()把结果 xx 输出到文件OUT5.DAT 中。 例如,原文:Adb.Bcdza abck.LLhj 结果:Aec.Bdeab bcdl.LLik 原始数据文件存放的格式是:每行的宽度均小于 80 个字符,含标点符号和空格。 注意:部分源程序已给出。 请勿改动主函数main()、读函数 ReadDat()和写函数 WriteDat()的内容。 试题程序: #include #include #include char xx5080; i

6、nt maxline = 0;/* 文章的总行数 */ int ReadDat(void); void WriteDat(void); void ConvertCharA(void) main() clrscr(); if(ReadDat() printf(“数据文件 IN5.DAT 不能打开!n007“); return; ConvertCharA(); WriteDat(); int ReadDat(void) FILE *fp; int i =0; char *p; if(fp = fopen(“IN5.DAT“, “r“) = NULL) return 1; while(fgets(x

7、xi, 80, fp) !=NULL) p = strchr(xxi, n); if(p) *p = 0; i+; maxline = i; fclose(fp); return 0; void WriteDat(void) FILE *fp; int i; clrscr(); fp = fopen(“OUT5.DAT“, “w“); for(i = 0; i maxline; i+) printf(“%sn“, xxi); fprintf(fp, “%sn“, xxi); fclose(fp); (分数:-1.00)_正确答案:(void ConvertCharA(void) int i,j,str; for(i=0;i=a /*如果该字符是从 a 到 y 的小写字母则改写为该字母的下一个字母*/ )解析:本题要对二维数组中的字符元素按行来处理,因此,首先要求得当前行所包含的字符总个数,之后才可以利用一个循环来依次访问该行中的所有字符。当遇到一个字符时,先判断该字符是否是小写字母z,如果是,则把该字符改写成小写字母 a;如果不是,则继续判断该字符是否是从 a 到 y 的小写字母,如果是,则改写为该字母的下一个字母(利用字符的 ASCII 码值来实现);如果不是,则不做任何的操作,接着去取下一个字符。

展开阅读全文
相关资源
猜你喜欢
  • DIN EN 15518-1-2011 Winter maintenance equipment - Road weather information systems - Part 1 Global definitions and components German version EN 15518-1 2011《冬季养护设备 道路气象信息系统 第1部分 总.pdf DIN EN 15518-1-2011 Winter maintenance equipment - Road weather information systems - Part 1 Global definitions and components German version EN 15518-1 2011《冬季养护设备 道路气象信息系统 第1部分 总.pdf
  • DIN EN 15518-2-2011 Winter maintenance equipment - Road weather information systems - Part 2 Road weather - Recommended observation and forecast German version EN 15518-2 2011《冬季维修.pdf DIN EN 15518-2-2011 Winter maintenance equipment - Road weather information systems - Part 2 Road weather - Recommended observation and forecast German version EN 15518-2 2011《冬季维修.pdf
  • DIN EN 15518-3-2011 Winter maintenance equipment - Road weather information systems - Part 3 Requirements on measured values of stationary equipments German version EN 15518-3 2011.pdf DIN EN 15518-3-2011 Winter maintenance equipment - Road weather information systems - Part 3 Requirements on measured values of stationary equipments German version EN 15518-3 2011.pdf
  • DIN EN 15519-2008 Paper and board intended to come into contact with foodstuffs - Preparation of an organic solvent extract German version EN 15519 2007《与食品接触的纸和纸板 有机溶剂提取制备 德文版本EN .pdf DIN EN 15519-2008 Paper and board intended to come into contact with foodstuffs - Preparation of an organic solvent extract German version EN 15519 2007《与食品接触的纸和纸板 有机溶剂提取制备 德文版本EN .pdf
  • DIN EN 15520-2007 Thermal spraying - Recommendations for constructional design of components with thermally sprayed coatings German version EN 15520 2007《热喷涂 热喷覆层组件结构设计的推荐实施规程 德文版本.pdf DIN EN 15520-2007 Thermal spraying - Recommendations for constructional design of components with thermally sprayed coatings German version EN 15520 2007《热喷涂 热喷覆层组件结构设计的推荐实施规程 德文版本.pdf
  • DIN EN 15527-2008 Characterization of waste - Determination of polycyclic aromatic hydrocarbons (PAH) in waste using gas chromatography mass spectrometry (GC MS) English version of.pdf DIN EN 15527-2008 Characterization of waste - Determination of polycyclic aromatic hydrocarbons (PAH) in waste using gas chromatography mass spectrometry (GC MS) English version of.pdf
  • DIN EN 15528-2016 Railway applications - Line categories for managing the interface between load limits of vehicles and infrastructure German version EN 15528 2015《轨道交通 管理车辆和基础设施间载.pdf DIN EN 15528-2016 Railway applications - Line categories for managing the interface between load limits of vehicles and infrastructure German version EN 15528 2015《轨道交通 管理车辆和基础设施间载.pdf
  • DIN EN 15529-2007 Derivatives from coal pyrolysis - Teminology English version of DIN EN 15529 2007-05《高温分解煤的衍生物 术语》.pdf DIN EN 15529-2007 Derivatives from coal pyrolysis - Teminology English version of DIN EN 15529 2007-05《高温分解煤的衍生物 术语》.pdf
  • DIN EN 15530-2008 Aluminium and aluminium alloys - Environmental aspects of aluminium products - General guidelines for their inclusion in standards German version EN 15530 2008《铝和.pdf DIN EN 15530-2008 Aluminium and aluminium alloys - Environmental aspects of aluminium products - General guidelines for their inclusion in standards German version EN 15530 2008《铝和.pdf
  • 相关搜索

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

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