【计算机类职业资格】二级C语言-380及答案解析.doc

上传人:tireattitude366 文档编号:1325331 上传时间:2019-10-17 格式:DOC 页数:6 大小:34.50KB
下载 相关 举报
【计算机类职业资格】二级C语言-380及答案解析.doc_第1页
第1页 / 共6页
【计算机类职业资格】二级C语言-380及答案解析.doc_第2页
第2页 / 共6页
【计算机类职业资格】二级C语言-380及答案解析.doc_第3页
第3页 / 共6页
【计算机类职业资格】二级C语言-380及答案解析.doc_第4页
第4页 / 共6页
【计算机类职业资格】二级C语言-380及答案解析.doc_第5页
第5页 / 共6页
点击查看更多>>
资源描述

1、二级 C 语言-380 及答案解析(总分:100.00,做题时间:90 分钟)一、程序填空题(总题数:1,分数:30.00)1.给定程序中,函数 fun 的功能是:将形参 s 所指字符串中的所有数字字符顺序前移,其他字符顺序后移,处理后新字符串的首地址作为函数值返回。 例如,s 所指字符串为:asd123fgh543df,处理后新字符串为:123543asdfghdf。请在程序的下画线处填入正确的内容并把下画线删除,使程序得出正确的结果。 注意:不得增行或删行,也不得更改程序的结构! 试题程序: #includestdio.h #includestring.h #includestdlib.h

2、 #includectype.h char*fun(char*s) int i,j,k,n;char *p,*t; n=strlen(s)+1; t=(char*)malloc(n*sizeof(char); p=(char*)malloc(n*sizeof(char); j=0;k=0; for(i=0;in;i+) if(isdigit(si) /*found*/ p 1=si;j+; else tk=si;k+; /*found*/ for(i=0;i pj+i=ti;pj+k=0;/*found*/return 3;main()char s80;printf(“Please input

3、:“);scanf(“%s“,s);printf(“/nThe result is:%s/n“,fun(s);(1)j (2)k (3)p 或(p)解析 填空 1:函数中申请了两个内存空间,其中 p 存放数字字符串,t 存放非数字字符串,根据条件可知,p依次存放数字字符串,其位置由 j 来控制,所以应填 j。填空 2:利用 for 循环再把 t 中的内容依次追加到 p 中,其中 t 的长度为 k,所以应填 k。填空 3:处理之后的字符串存放到 p 中,最后返回 p 的首地址即可,所以应填 p。4(分数:30.00)二、程序修改题(总题数:1,分数:30.00)2.给定程序中函数 fun 的功能

4、是:首先把 b 所指字符串中的字符按逆序存放,然后将 a 所指字符串中的字符和 b 所指字符串中的字符,按排列的顺序交叉合并到 c 所指数组中,过长的剩余字符接在 c 所指的数组的尾部。例如,当 a 所指字符串中的内容为“abcdefg“,b 所指字符串中的内容为“1234“时,c 所指数组中的内容应为“a4b3c2d1efg“;而当 a 所指字符串中的内容为“1234“,b 所指字符串的内容为“abcdefg“时,c 所指数组中的内容应该为“1g2f3e4dcba“。 请改正程序中的错误,使它能得出正确的结果。 注意:不要改动 main 函数,不得增行或删行,也不得更改程序的结构! 试题程序

5、: #includestdio.h #includestring.h void fun(char*a,char*b,char*c) int i,j;char ch; i=0;j=strlen(b)-1; /*found*/ while(ij) ch=bi;bi=bj; bj=ch; i+;j-; while(*a|*b) /*found*/ If(*a) *c=*a; c+; a+; if(*b) *c=*b;c+;b+; *c=0; main() char s1100,s2100,t200; printf(“/nEnter s1 string:“); scanf(“%s“,s1); prin

6、tf(“/nEnter s2 string:“); scanf(“%s“,s2); fun(s1,s2,t); printf(“/nThe result is:%s/n“,t); (分数:30.00)三、程序设计题(总题数:1,分数:40.00)3.函数 fun 的功能是:将 s 所指字符串中下标为偶数同时 ASCII 值为奇数的字符删除,s 所指串中剩余的字符形成的新串放在 t 所指的数组中。 例如,若 s 所指字符串中的内容为“ABCDEFC12345“,其中字符 C 的 ASCII 码值为奇数,在数组中的下标为偶数,因此必须删除;而字符 1 的 ASCII 码值为奇数,在数组中的下标为奇

7、数,因此不应当删除,其他依此类推。最后 t 所指的数组中的内容应是“BDF12345“。 注意:请勿改动 main 函数和其他函数中的任何内容,仅在函数 fun 的花括号中填入你编写的若干语句。 试题程序: #includestdio.h #includestring.h void fun(char*s,char t) main() char s100,t100;void NONO(); printf(“/nPlease enter string S:“); scanf(“%s“,s); fun(s,t); printf(“/nThe result is:%s/n“,t); NONO(); v

8、oid NONO() /*本函数用于打开文件,输入数据,调用函数,输出数据,关闭文件。*/ char s100,t100; FILE*rf,*wf; int i; rf=fopen(“in.dat“,“r“); wf=fopen(“out.dat“,“w“); for(i=0;i10;i+) fscanf(rf,“%s“,s); fun(s,t); fprintf(wf,“%s/n“,t); fclose(rf); fclose(wf); (分数:40.00)_二级 C 语言-380 答案解析(总分:100.00,做题时间:90 分钟)一、程序填空题(总题数:1,分数:30.00)1.给定程序

9、中,函数 fun 的功能是:将形参 s 所指字符串中的所有数字字符顺序前移,其他字符顺序后移,处理后新字符串的首地址作为函数值返回。 例如,s 所指字符串为:asd123fgh543df,处理后新字符串为:123543asdfghdf。请在程序的下画线处填入正确的内容并把下画线删除,使程序得出正确的结果。 注意:不得增行或删行,也不得更改程序的结构! 试题程序: #includestdio.h #includestring.h #includestdlib.h #includectype.h char*fun(char*s) int i,j,k,n;char *p,*t; n=strlen(s

10、)+1; t=(char*)malloc(n*sizeof(char); p=(char*)malloc(n*sizeof(char); j=0;k=0; for(i=0;in;i+) if(isdigit(si) /*found*/ p 1=si;j+; else tk=si;k+; /*found*/ for(i=0;i pj+i=ti;pj+k=0;/*found*/return 3;main()char s80;printf(“Please input:“);scanf(“%s“,s);printf(“/nThe result is:%s/n“,fun(s);(1)j (2)k (3)

11、p 或(p)解析 填空 1:函数中申请了两个内存空间,其中 p 存放数字字符串,t 存放非数字字符串,根据条件可知,p依次存放数字字符串,其位置由 j 来控制,所以应填 j。填空 2:利用 for 循环再把 t 中的内容依次追加到 p 中,其中 t 的长度为 k,所以应填 k。填空 3:处理之后的字符串存放到 p 中,最后返回 p 的首地址即可,所以应填 p。4(分数:30.00)解析:(1)j (2)k (3)p 或(p) 解析 填空 1:函数中申请了两个内存空间,其中 p 存放数字字符串,t 存放非数字字符串,根据条件可知,p依次存放数字字符串,其位置由 j 来控制,所以应填 j。 填空

12、2:利用 for 循环再把 t 中的内容依次追加到 p 中,其中 t 的长度为 k,所以应填 k。 填空 3:处理之后的字符串存放到 p 中,最后返回 p 的首地址即可,所以应填 p。二、程序修改题(总题数:1,分数:30.00)2.给定程序中函数 fun 的功能是:首先把 b 所指字符串中的字符按逆序存放,然后将 a 所指字符串中的字符和 b 所指字符串中的字符,按排列的顺序交叉合并到 c 所指数组中,过长的剩余字符接在 c 所指的数组的尾部。例如,当 a 所指字符串中的内容为“abcdefg“,b 所指字符串中的内容为“1234“时,c 所指数组中的内容应为“a4b3c2d1efg“;而当

13、 a 所指字符串中的内容为“1234“,b 所指字符串的内容为“abcdefg“时,c 所指数组中的内容应该为“1g2f3e4dcba“。 请改正程序中的错误,使它能得出正确的结果。 注意:不要改动 main 函数,不得增行或删行,也不得更改程序的结构! 试题程序: #includestdio.h #includestring.h void fun(char*a,char*b,char*c) int i,j;char ch; i=0;j=strlen(b)-1; /*found*/ while(ij) ch=bi;bi=bj; bj=ch; i+;j-; while(*a|*b) /*foun

14、d*/ If(*a) *c=*a; c+; a+; if(*b) *c=*b;c+;b+; *c=0; main() char s1100,s2100,t200; printf(“/nEnter s1 string:“); scanf(“%s“,s1); printf(“/nEnter s2 string:“); scanf(“%s“,s2); fun(s1,s2,t); printf(“/nThe result is:%s/n“,t); (分数:30.00)解析:(1)while(ij) (2)if(*a) 解析 (1)由 i 和 j 定义的初始值可知,此处应该判断 j 是否小于 j,所以应

15、改为 while(ij)。 (2)此处将 if 错写成 If,这个错误比较简单,但往往不容易发现。三、程序设计题(总题数:1,分数:40.00)3.函数 fun 的功能是:将 s 所指字符串中下标为偶数同时 ASCII 值为奇数的字符删除,s 所指串中剩余的字符形成的新串放在 t 所指的数组中。 例如,若 s 所指字符串中的内容为“ABCDEFC12345“,其中字符 C 的 ASCII 码值为奇数,在数组中的下标为偶数,因此必须删除;而字符 1 的 ASCII 码值为奇数,在数组中的下标为奇数,因此不应当删除,其他依此类推。最后 t 所指的数组中的内容应是“BDF12345“。 注意:请勿改

16、动 main 函数和其他函数中的任何内容,仅在函数 fun 的花括号中填入你编写的若干语句。 试题程序: #includestdio.h #includestring.h void fun(char*s,char t) main() char s100,t100;void NONO(); printf(“/nPlease enter string S:“); scanf(“%s“,s); fun(s,t); printf(“/nThe result is:%s/n“,t); NONO(); void NONO() /*本函数用于打开文件,输入数据,调用函数,输出数据,关闭文件。*/ char

17、s100,t100; FILE*rf,*wf; int i; rf=fopen(“in.dat“,“r“); wf=fopen(“out.dat“,“w“); for(i=0;i10;i+) fscanf(rf,“%s“,s); fun(s,t); fprintf(wf,“%s/n“,t); fclose(rf); fclose(wf); (分数:40.00)_正确答案:()解析:void fun(char*s,char t) int i,j=0; for(i=0;istrlen(s);i+) if(!(i%2)=0 tj=0; 解析 本题是从一个字符串按要求生成另一个新的字符串。我们使用 for 循环语句来解决这个问题。在赋值新的字符串之前,先对数组元素的下标和 ASCII 码的值进行判断,将满足要求的元素赋给新的字符串。

展开阅读全文
相关资源
猜你喜欢
  • DIN 1996-9-1981 Testing of Bituminous Materials for Road Building and Related Purposes Swelling Test《筑路和相关用途用沥青材料的检验 膨胀试验》.pdf DIN 1996-9-1981 Testing of Bituminous Materials for Road Building and Related Purposes Swelling Test《筑路和相关用途用沥青材料的检验 膨胀试验》.pdf
  • DIN 1999-100-2016 Installations for separation of light liquids - Part 100 Application provisions for installations for separation of light liquids in accordance with DIN EN 858-1 .pdf DIN 1999-100-2016 Installations for separation of light liquids - Part 100 Application provisions for installations for separation of light liquids in accordance with DIN EN 858-1 .pdf
  • DIN 1999-101-2009 de 8056 Installations for separation of light liquids - Part 101 Additional requirements on installations for separation in accordance with DIN EN 858-1 DIN EN 85.pdf DIN 1999-101-2009 de 8056 Installations for separation of light liquids - Part 101 Additional requirements on installations for separation in accordance with DIN EN 858-1 DIN EN 85.pdf
  • DIN 2000-2017 Central drinking water supply - Guidelines regarding requirements for drinking water planning construction operation and maintenance of supply plants《饮用水集中供给 对饮用水和饮用水.pdf DIN 2000-2017 Central drinking water supply - Guidelines regarding requirements for drinking water planning construction operation and maintenance of supply plants《饮用水集中供给 对饮用水和饮用水.pdf
  • DIN 20000-1-2017 Application of construction products in structures - Part 1 Wood based panels《建筑物中建筑产品的应用 第1部分 木基板》.pdf DIN 20000-1-2017 Application of construction products in structures - Part 1 Wood based panels《建筑物中建筑产品的应用 第1部分 木基板》.pdf
  • DIN 20000-129-2014 Application of building products in structures - Part 129 Rules for the application of clay blocks according to DIN EN 15037-3 2011-07《建筑物中建筑产品的应用 第129部分 符合DIN E.pdf DIN 20000-129-2014 Application of building products in structures - Part 129 Rules for the application of clay blocks according to DIN EN 15037-3 2011-07《建筑物中建筑产品的应用 第129部分 符合DIN E.pdf
  • DIN 20000-2-2013 Application of construction products in structures - Part 2 Prefabricated timber formwork beams《建筑物中建筑产品的应用 第2部分 预制的木模板梁 n》.pdf DIN 20000-2-2013 Application of construction products in structures - Part 2 Prefabricated timber formwork beams《建筑物中建筑产品的应用 第2部分 预制的木模板梁 n》.pdf
  • DIN 20000-3-2015 Application of construction products in structures - Part 3 Glued laminated timber and glued solid timber according to DIN EN 14080《建筑物中建筑产品的应用 第3部分 符合DIN EN 14080.pdf DIN 20000-3-2015 Application of construction products in structures - Part 3 Glued laminated timber and glued solid timber according to DIN EN 14080《建筑物中建筑产品的应用 第3部分 符合DIN EN 14080.pdf
  • DIN 20000-4-2013 Application of construction products in structures - Part 4 Prefabricated structural members assembled with punched metal plate fasteners according to DIN EN 14250.pdf DIN 20000-4-2013 Application of construction products in structures - Part 4 Prefabricated structural members assembled with punched metal plate fasteners according to DIN EN 14250.pdf
  • 相关搜索

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

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