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

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

1、二级 C 语言机试 13 及答案解析(总分:100.00,做题时间:90 分钟)一、B填空题/B(总题数:1,分数:30.00)1.字符串 str 由数字字符组成(长度不超过 5 个字符),可看作任意进制的数,请补充函数 fun(),该函数的功能是:把 str 字符串转换成任意进制的数,结果保存在数组 xx 中,由函数返回转换后数组腆的实际长度。其中 x 表示 str 原来的进制, y 表示要转换成的进制。例如,输入 str“1111”,x=2,y=10,结果输出:15。如果输入 str=“15”, x10,Y2,结果输出: 1111。 注意:部分源程序给出如下。 请勿改动主函数 main 和

2、其他函数中的任何内容,仅在函数 fun()的横线上填入所编写的若干表达式或语句。 试题程序: #include stdio.h #includestdlib.h #includestring.h #define N 8 int xxN; int fun(char *str,int x,int y) int sum; int i=0; char *p=str; for(i=0; iN; i+) xxi=0; sum=*p-0; p+; while (*p) sum=U 【1】 /U; p+; i=0; while(sum!=0) xxi=U 【2】 /U; U 【3】 /U; i+; retur

3、n i; main () char str6; int i; int n; int x; int y; printf(“Enter a string made up of 0 to 9 digits character:“); gets(str); if(strlen (str) 5) printf(“Error:string too longer!, please input again!/n/n“); exit(0); for(i=0;stri;i+) if(stri0|stri9) printf(“Error:%c not is 0 to 9 digits character!/n/n“

4、, stri); exit(0); printf(“The original string: “); puts(str); printf(“/nINPUT x= “); scanf(“%d“, printf(“/nINPUT y= “); scanf(“%d“, nfun(str,x,y);printf(“/n%s is convered to“,str); for (i=n-1; i0; i-) printf(“%d“,xxi); (分数:30.00)填空项 1:_二、B改错题/B(总题数:1,分数:30.00)2.给定程序中,函数 fun()的功能是:使数组中的元素的值缩小 5 倍。 请改

5、正程序中的错误,使它能得出正确的结果。 注意:不要改动 main 函数,不得增行或删行,也不得更改程序的结构。 试题程序: #includestdio.h #includeconio.h float m10; /*found*/ int fun (void) int j; printf(“In subfunc after calling/n“); for(j=O;jlO;j+) ; /*found*/ print (“%f “,mj%5); main() int i; printf (“In main before calling/n“); for (i=0;i10;i+) mi=i+20;

6、printf(“%f “,mi); fun(); printf(“/nIn main after calling/n“); for(i=O; i10;i+) printf(“%f “,mi/5); (分数:30.00)填空项 1:_三、B编程题/B(总题数:1,分数:40.00)3.请编写函数 fun(),其功能是:将 s 所指字符串中除了下标为奇数、同时 ASCII 值为偶数的字符外,其余的全部删除,串中剩余字符所形成的一个新串放在 t 所指的数组中。 例如,若 s 所指字符串中的内容为 edB2A4Dsdg,其中字符 A 的 ASCII 码值为奇数,因此应当删除;其中字符 B 的 ASCI

7、I 码值为偶数,但在数组中的下标为偶数,因此也应当删除:而字符 2 的 ASCII 码值为偶数,所在数组中的下标为奇数,因此不应当删除,其他依此类推。最后 t 所指的数组中的内容应是 d24。 注意:部分源程序给出如下。 请勿改动主函数 main 和其他函数中的任何内容,仅在函数 fun 的花括号中填入所编写的若干语句。 试题程序: #include conio.h #include stdio.h #includestring, h void fun(char*s, char t) main() char s100 ,t100; clrscr(); printf(“/nPlease ente

8、r string S: “); scanf(“%s“,s); fun(s,t); printf(“/nThe result is: %s/n“,t); (分数:40.00)_二级 C 语言机试 13 答案解析(总分:100.00,做题时间:90 分钟)一、B填空题/B(总题数:1,分数:30.00)1.字符串 str 由数字字符组成(长度不超过 5 个字符),可看作任意进制的数,请补充函数 fun(),该函数的功能是:把 str 字符串转换成任意进制的数,结果保存在数组 xx 中,由函数返回转换后数组腆的实际长度。其中 x 表示 str 原来的进制, y 表示要转换成的进制。例如,输入 str

9、“1111”,x=2,y=10,结果输出:15。如果输入 str=“15”, x10,Y2,结果输出: 1111。 注意:部分源程序给出如下。 请勿改动主函数 main 和其他函数中的任何内容,仅在函数 fun()的横线上填入所编写的若干表达式或语句。 试题程序: #include stdio.h #includestdlib.h #includestring.h #define N 8 int xxN; int fun(char *str,int x,int y) int sum; int i=0; char *p=str; for(i=0; iN; i+) xxi=0; sum=*p-0;

10、 p+; while (*p) sum=U 【1】 /U; p+; i=0; while(sum!=0) xxi=U 【2】 /U; U 【3】 /U; i+; return i; main () char str6; int i; int n; int x; int y; printf(“Enter a string made up of 0 to 9 digits character:“); gets(str); if(strlen (str) 5) printf(“Error:string too longer!, please input again!/n/n“); exit(0);

11、for(i=0;stri;i+) if(stri0|stri9) printf(“Error:%c not is 0 to 9 digits character!/n/n“, stri); exit(0); printf(“The original string: “); puts(str); printf(“/nINPUT x= “); scanf(“%d“, printf(“/nINPUT y= “); scanf(“%d“, nfun(str,x,y);printf(“/n%s is convered to“,str); for (i=n-1; i0; i-) printf(“%d“,x

12、xi); (分数:30.00)填空项 1:_ (正确答案:1 sum*x+*p-0 2 sum%y 3 sum=sum/y)解析:解析 填空 1:为了进行数字运算,必须要将字符串中的数字字符转换为数字,用数字字符减去字符0的 ASCII 码,就得到对应的数字。将 x 进制数转换为十进制数的算法是:以 1001 为例,对应的十进制数为 l*x3+0*x2+O*x+1=x*(x*(x*1+0)+0)+1。填空 2:将十进制数转换为 y 进制数的算法与将 y 进制数转换为十进制数的算法正好相反,十进制数对 y 取余,得到 y 进制数的最低位。填空 3:将十进制数整除 y 后得到的数,再对 y 取余,

13、则得到 y 进制数的次低位,如此循环,得到 y 进制数的各位,转换的结果存于数值 xxN中。二、B改错题/B(总题数:1,分数:30.00)2.给定程序中,函数 fun()的功能是:使数组中的元素的值缩小 5 倍。 请改正程序中的错误,使它能得出正确的结果。 注意:不要改动 main 函数,不得增行或删行,也不得更改程序的结构。 试题程序: #includestdio.h #includeconio.h float m10; /*found*/ int fun (void) int j; printf(“In subfunc after calling/n“); for(j=O;jlO;j+)

14、 ; /*found*/ print (“%f “,mj%5); main() int i; printf (“In main before calling/n“); for (i=0;i10;i+) mi=i+20; printf(“%f “,mi); fun(); printf(“/nIn main after calling/n“); for(i=O; i10;i+) printf(“%f “,mi/5); (分数:30.00)填空项 1:_ (正确答案:(1)错误:int fun(void) 正确:void fun(void))解析:(2) 错误:printf(“%f“,mj%5);

15、正确:printf(“%f“,mj/5); 解析 错误 1:函数 fun()没有返回值,所以定义函数类型为 void。错误 2:此处考查的是除法运算符和取余运算符的区别。三、B编程题/B(总题数:1,分数:40.00)3.请编写函数 fun(),其功能是:将 s 所指字符串中除了下标为奇数、同时 ASCII 值为偶数的字符外,其余的全部删除,串中剩余字符所形成的一个新串放在 t 所指的数组中。 例如,若 s 所指字符串中的内容为 edB2A4Dsdg,其中字符 A 的 ASCII 码值为奇数,因此应当删除;其中字符 B 的 ASCII 码值为偶数,但在数组中的下标为偶数,因此也应当删除:而字符

16、 2 的 ASCII 码值为偶数,所在数组中的下标为奇数,因此不应当删除,其他依此类推。最后 t 所指的数组中的内容应是 d24。 注意:部分源程序给出如下。 请勿改动主函数 main 和其他函数中的任何内容,仅在函数 fun 的花括号中填入所编写的若干语句。 试题程序: #include conio.h #include stdio.h #includestring, h void fun(char*s, char t) main() char s100 ,t100; clrscr(); printf(“/nPlease enter string S: “); scanf(“%s“,s); fun(s,t); printf(“/nThe result is: %s/n“,t); (分数:40.00)_正确答案:()解析:void fun(char*s, char t) int i,j=0; for(i=0;si!=/0;i+) if(i%2!=0 tj=/0; /*在字符串最后加上结束标志位*/ 解析 本题要求除了下标为奇数同时 ASCII 值为偶数的字符之外,其他字符都删除。即题目要求留下下标为奇数同时 ASCII 值为偶数的字符。C 语言中并没有直接删除字符的算法,请大家在做题的时候注意。

展开阅读全文
相关资源
猜你喜欢
  • BS 1748-8-1960 Methods for the analysis of copper alloys - Method for the determination of phosphorus in copper alloys (photometric method)《铜合金分析方法 第8部分 铜合金中磷的测定方法(光度测量法)》.pdf BS 1748-8-1960 Methods for the analysis of copper alloys - Method for the determination of phosphorus in copper alloys (photometric method)《铜合金分析方法 第8部分 铜合金中磷的测定方法(光度测量法)》.pdf
  • BS 1748-9-1963 Methods for the analysis of copper alloys - Method for the determination of zinc in copper alloys《铜合金分析方法 第9部分 铜合金中锌的测定方法》.pdf BS 1748-9-1963 Methods for the analysis of copper alloys - Method for the determination of zinc in copper alloys《铜合金分析方法 第9部分 铜合金中锌的测定方法》.pdf
  • BS 1751-1997 Laboratory glassware - Specification for straight-bore glass stopcocks for general purposes《实验室玻璃器皿 普通直孔玻璃管塞规范》.pdf BS 1751-1997 Laboratory glassware - Specification for straight-bore glass stopcocks for general purposes《实验室玻璃器皿 普通直孔玻璃管塞规范》.pdf
  • BS 1752-1983 Specification for laboratory sintered or fritted filters including porosity grading《实验室烧结或熔结过滤器(包括气孔率分级)规范》.pdf BS 1752-1983 Specification for laboratory sintered or fritted filters including porosity grading《实验室烧结或熔结过滤器(包括气孔率分级)规范》.pdf
  • BS 1759-1969 Specification for knurling wheels《滚花轮规范》.pdf BS 1759-1969 Specification for knurling wheels《滚花轮规范》.pdf
  • BS 1765-1-1990 Hospital bedside lockers - Specification for general purpose bedside lockers for patients《医院床头柜规范 第1部分 医院用一般用途床头柜》.pdf BS 1765-1-1990 Hospital bedside lockers - Specification for general purpose bedside lockers for patients《医院床头柜规范 第1部分 医院用一般用途床头柜》.pdf
  • BS 1765-2-1976 Specification for hospital bedside lockers - General purpose lockers of wooden construction with facilities for hanging day clothes《医院床头柜规范 第2部分 可挂日常衣物的一般木制床头柜》.pdf BS 1765-2-1976 Specification for hospital bedside lockers - General purpose lockers of wooden construction with facilities for hanging day clothes《医院床头柜规范 第2部分 可挂日常衣物的一般木制床头柜》.pdf
  • BS 1768-1963 Specification for Unified precision hexagon bolts screws & nuts (UNC & UNF threads) - Normal series《统一精密六角头螺栓、螺钉和螺母(UNC与UNF螺纹)规范 标准系列》.pdf BS 1768-1963 Specification for Unified precision hexagon bolts screws & nuts (UNC & UNF threads) - Normal series《统一精密六角头螺栓、螺钉和螺母(UNC与UNF螺纹)规范 标准系列》.pdf
  • BS 1769-1951 Specification Unified black hexagon bolts screws nuts (UNC & UNF threads) Heavy series《统一粗制六角螺栓 螺钉和螺母(UNC与UNF 螺纹)规范 重型系列》.pdf BS 1769-1951 Specification Unified black hexagon bolts screws nuts (UNC & UNF threads) Heavy series《统一粗制六角螺栓 螺钉和螺母(UNC与UNF 螺纹)规范 重型系列》.pdf
  • 相关搜索

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

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