【计算机类职业资格】计算机三级(数据库技术)上机考试4及答案解析.doc

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

1、计算机三级(数据库技术)上机考试 4 及答案解析(总分:-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; clr

4、scr(); fp = fopen(“OUT5.DAT“, “w“); for(i = 0; i maxline; i+) printf(“%sn“, xxi); fprintf(fp, “%sn“, xxi); fclose(fp); (分数:-1.00)_计算机三级(数据库技术)上机考试 4 答案解析(总分:-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; int m

6、axline = 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(xxi,

7、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 22100-6-2010 Articles and materials from synthetic for use in underground mines - Part 6 Sheeting coated uncoated tissue brattice materials and lagging mats - Safety requiremen.pdf DIN 22100-6-2010 Articles and materials from synthetic for use in underground mines - Part 6 Sheeting coated uncoated tissue brattice materials and lagging mats - Safety requiremen.pdf
  • DIN 22100-7-2011 Articles and materials from synthetics for use in underground mines - Part 7 Safety requirements testing marking《地下矿井用合成器材和材料 第7部分 安全要求 检验 标识》.pdf DIN 22100-7-2011 Articles and materials from synthetics for use in underground mines - Part 7 Safety requirements testing marking《地下矿井用合成器材和材料 第7部分 安全要求 检验 标识》.pdf
  • DIN 22101-2011 Continuous conveyors - Belt conveyors for loose bulk materials - Basis for calculation and dimensioning《连续输送带 散装材料皮带输送机 作为计算和尺寸标注的基础》.pdf DIN 22101-2011 Continuous conveyors - Belt conveyors for loose bulk materials - Basis for calculation and dimensioning《连续输送带 散装材料皮带输送机 作为计算和尺寸标注的基础》.pdf
  • DIN 22102-1-2014 Conveyor belts with textile plies for bulk goods - Part 1 Dimensions specifications marking《散装货物用带织物层的输送机皮带 第1部分 尺寸规格、规格、标志》.pdf DIN 22102-1-2014 Conveyor belts with textile plies for bulk goods - Part 1 Dimensions specifications marking《散装货物用带织物层的输送机皮带 第1部分 尺寸规格、规格、标志》.pdf
  • DIN 22102-2-2014 Conveyor belts with textile plies for bulk goods - Part 2 Testing《松散物料用带织物层的输送机皮带 第2部分 检验》.pdf DIN 22102-2-2014 Conveyor belts with textile plies for bulk goods - Part 2 Testing《松散物料用带织物层的输送机皮带 第2部分 检验》.pdf
  • DIN 22102-3-2014 Conveyor belts with textile plies for bulk goods - Part 3 Permanent joints《散装货物用织物叠层皮带输送机 第3部分 固定式连接》.pdf DIN 22102-3-2014 Conveyor belts with textile plies for bulk goods - Part 3 Permanent joints《散装货物用织物叠层皮带输送机 第3部分 固定式连接》.pdf
  • DIN 22107-1984 Continous mechanical handling equipment idler sets for belt conveyors for loose bulk materials principal dimensions《连续机械装卸设备 散装物皮带输送机用支承托辊 主要尺寸》.pdf DIN 22107-1984 Continous mechanical handling equipment idler sets for belt conveyors for loose bulk materials principal dimensions《连续机械装卸设备 散装物皮带输送机用支承托辊 主要尺寸》.pdf
  • DIN 22109-1-2015 Conveyor belts with textile plies for coalmining - Part 1 Monopoly belts for underground applications - Dimensions requirements《煤矿用织物叠层输送带 第1部分 井下用单层输送带 尺寸 要求》.pdf DIN 22109-1-2015 Conveyor belts with textile plies for coalmining - Part 1 Monopoly belts for underground applications - Dimensions requirements《煤矿用织物叠层输送带 第1部分 井下用单层输送带 尺寸 要求》.pdf
  • DIN 22109-2-2015 Conveyor belts with textile plies for coalmining - Part 2 Rubber-belts with two plies for underground applications - Dimensions requirements《煤矿用织物叠层输送带 第2部分 井下用双层橡.pdf DIN 22109-2-2015 Conveyor belts with textile plies for coalmining - Part 2 Rubber-belts with two plies for underground applications - Dimensions requirements《煤矿用织物叠层输送带 第2部分 井下用双层橡.pdf
  • 相关搜索
    资源标签

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

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