【计算机类职业资格】三级信息管理技术机试-141及答案解析.doc

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

1、三级信息管理技术机试-141 及答案解析(总分:100.00,做题时间:90 分钟)1.函数 ReadDat()的功能是实现从文件 ENG9.IN中读取一篇英文文章,存入到字符串数组 xx中。请编制函数 encryptChat(),按给定的替代关系对数组 xx中的所有字符进行替代,仍存入数组 xx的对应的位置上,最后调用函数 WriteDat()把结果 xx输出到文件 PS9.DAT中。替代关系:f(p)=p* 11 mod 256(p 是数组 xx中某一个字符的 ASCII值,f(p)是计算后新字符的 ASCII值),如果原字符的 ASCII值是偶数或计算后 f(p)的值小于等于 32,则该

2、字符不变,否则将 f(p)所对应的字符进行替代。注意:部分源程序已给出,原始数据文件存放的格式是:每行的宽度均小于 80千字符。请勿改动主函数 main()、读函数 ReadDat()和写函数 WriteDat()的内容。试题程序:#include stdio.h#include string.h#include conio.h#include ctype.hunsigned char xx50 80;int maxline = 0; /*文章的总行数 */int ReadDat(void);void WriteDat(void);void encryptChar()main ( )clrsc

3、r();if (ReadDat ( ) )printf (“数据文件 ENG9.IN不能打开! /n/007 “);return;encryptChar();WriteDat();int ReadDat(void)FILE *fp;int i= 0;unsigned char *p;if (fp = fopen(“ENG9.IN“,“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 WriteDa

4、t(void)FILE *fp;int i;fp = fopen(“PSg.DAT“, “w“ ;for(i = 0; i maxline; i+)printf(“%s/n“, xxi);fprintf(fp, “%s/n“, xxi); fclose(fp);(分数:100.00)_三级信息管理技术机试-141 答案解析(总分:100.00,做题时间:90 分钟)1.函数 ReadDat()的功能是实现从文件 ENG9.IN中读取一篇英文文章,存入到字符串数组 xx中。请编制函数 encryptChat(),按给定的替代关系对数组 xx中的所有字符进行替代,仍存入数组 xx的对应的位置上,最

5、后调用函数 WriteDat()把结果 xx输出到文件 PS9.DAT中。替代关系:f(p)=p* 11 mod 256(p 是数组 xx中某一个字符的 ASCII值,f(p)是计算后新字符的 ASCII值),如果原字符的 ASCII值是偶数或计算后 f(p)的值小于等于 32,则该字符不变,否则将 f(p)所对应的字符进行替代。注意:部分源程序已给出,原始数据文件存放的格式是:每行的宽度均小于 80千字符。请勿改动主函数 main()、读函数 ReadDat()和写函数 WriteDat()的内容。试题程序:#include stdio.h#include string.h#include

6、conio.h#include ctype.hunsigned char xx50 80;int maxline = 0; /*文章的总行数 */int ReadDat(void);void WriteDat(void);void encryptChar()main ( )clrscr();if (ReadDat ( ) )printf (“数据文件 ENG9.IN不能打开! /n/007 “);return;encryptChar();WriteDat();int ReadDat(void)FILE *fp;int i= 0;unsigned char *p;if (fp = fopen(“

7、ENG9.IN“,“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;fp = fopen(“PSg.DAT“, “w“ ;for(i = 0; i maxline; i+)printf(“%s/n“, xxi);fprintf(fp, “%s/n“, xxi); fclose(fp);(分数:100.00)_正确答案:(void encr

8、yptChar (int i;char *pf;for (i=0; imaxline; i+)pf=xx i; /* 指针 pf指向当前行的首地址*/while (*pf ! =0)if(*pf%2=0 | *pf*11%256=32) ; /*如果原字符的 ASCII值是偶数或计算后的值小于等于 32,则该字符不变* /else*pf=*pf*11%256; /* 否则将所对应的字符进行替代*/pf+; /*指针 pf指向下一个字符*/)解析:解析本题主要考查用指针变量来控制字符数组,由于要对已有二维字符数组的所有元素逐个处理,因此,需要定义一个字符指针变量来控制原二维数组的各行。当前行如果确定下来,用指针的移动就可以依次扫描该行的所有字符元素,每得到一个字符就对它进行条件判断。根据题意,条件用“if(*pf%2=0 | *pf*11% 256=32)”来实现,如果该字符不满足上述条件,就用一个新的字符来替代,新的字符是当前字符乘以 11的结果再去与 256求余数,处理完毕后,指针去取下一个字符。如果该字符满足所给条件,将不做任何操作,指针直接下移,去取下一个字符,对下一个字符进行处理。

展开阅读全文
相关资源
猜你喜欢
  • BS EN 14628-2005 Ductile iron pipes fittings and accessories - External polythene coating for pipes - Requirements and test methods《球墨铸铁管、配件和附件 管道外部聚乙烯涂层 要求和试验方法》.pdf BS EN 14628-2005 Ductile iron pipes fittings and accessories - External polythene coating for pipes - Requirements and test methods《球墨铸铁管、配件和附件 管道外部聚乙烯涂层 要求和试验方法》.pdf
  • BS EN 14629-2007 Products and systems for the protection and repair of concrete structures - Test methods - Determination of chloride content in hardened concrete《混凝土结构保护和修理用产品和系统 .pdf BS EN 14629-2007 Products and systems for the protection and repair of concrete structures - Test methods - Determination of chloride content in hardened concrete《混凝土结构保护和修理用产品和系统 .pdf
  • BS EN 14630-2006 Products and systems for the protection and repair of concrete structures - Test methods - Determination of carbonation depth in hardened concrete by the phenolpht.pdf BS EN 14630-2006 Products and systems for the protection and repair of concrete structures - Test methods - Determination of carbonation depth in hardened concrete by the phenolpht.pdf
  • BS EN 14634-2010 Glass packaging 26 H 180 crown finish Dimensions《玻璃封装 26 H 180冠形瓶口 尺寸规格》.pdf BS EN 14634-2010 Glass packaging 26 H 180 crown finish Dimensions《玻璃封装 26 H 180冠形瓶口 尺寸规格》.pdf
  • BS EN 14635-2010 Glass packaging - 26 H 126 crown finish - Dimensions《玻璃包装 26 H 126冠形瓶口 尺寸规格》.pdf BS EN 14635-2010 Glass packaging - 26 H 126 crown finish - Dimensions《玻璃包装 26 H 126冠形瓶口 尺寸规格》.pdf
  • BS EN 14636-1-2009 Plastics piping systems for non-pressure drainage and sewerage - Polyester resin concrete (PRC) - Pipes and fittings with flexible joints《非压力型排水和排污塑料管系统 聚酯树脂混凝土 .pdf BS EN 14636-1-2009 Plastics piping systems for non-pressure drainage and sewerage - Polyester resin concrete (PRC) - Pipes and fittings with flexible joints《非压力型排水和排污塑料管系统 聚酯树脂混凝土 .pdf
  • BS EN 14636-2-2009 Plastics piping systems for non-pressure drainage and sewerage - Polyester resin concrete (PRC) - Manholes and inspection chambers《无压排水和排污塑料管道系统 聚酯树脂混凝土 n(PRC) 检.pdf BS EN 14636-2-2009 Plastics piping systems for non-pressure drainage and sewerage - Polyester resin concrete (PRC) - Manholes and inspection chambers《无压排水和排污塑料管道系统 聚酯树脂混凝土 n(PRC) 检.pdf
  • BS EN 14637-2007 Building hardware - Electrically controlled hold-open systems for fire smoke door assemblies - Requirements test methods application and maintenance《建筑五金件 防火门 防烟门组.pdf BS EN 14637-2007 Building hardware - Electrically controlled hold-open systems for fire smoke door assemblies - Requirements test methods application and maintenance《建筑五金件 防火门 防烟门组.pdf
  • BS EN 14638-1-2006 Transportable gas cylinders - Refillable welded receptacles of a capacity not exceeding 150 litres - Welded austenitic stainless steel cylinders made to a design.pdf BS EN 14638-1-2006 Transportable gas cylinders - Refillable welded receptacles of a capacity not exceeding 150 litres - Welded austenitic stainless steel cylinders made to a design.pdf
  • 相关搜索

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

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