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

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

1、二级 C 语言-209 及答案解析(总分:100.00,做题时间:90 分钟)一、程序填空题(总题数:1,分数:30.00)1.给定程序中,函数 fun 的功能是:将形参指针所指结构体数组中的三个元素按 num 成员进行升序排列。 请在程序的下划线处填入正确的内容并把下戈线删除,使程序得出正确的结果。 注意 :部分源程序给出如下。 不得增行或删行,也不得更改程序的结构! 试题程序: #include stdio.h typedef struct int num; char name10; PERSON; /*found*/ void fun(PERSON 1, /*found*/ 2temp;

2、 if(std0.numstdi.num) temp=std0; std0=std1; std1=temp; if(std0.numstd2.num) temp=std0; std0=std2; std2=temp; if(std1.numstd2.num) temp=std1; std1=std2; std2=temp; main() PERSON std=(5,“Zhanghu“,2,“WangLi“,6,“LinMin“; int i; /*found*/ fun( 3); printf(“The result is“:); for(i=0;i3;i+) printf(“%d,%s“,s

3、tdi.num,stdi.name); (分数:30.00)二、程序改错题(总题数:1,分数:30.00)2.下列给定程序中函数 fun 的功能是:将 m(1m10)个字符串连接起来,组成一个新串,放入 pt 所指存储区中。例如,把三个串“abc”、“CD”、“EF”连接起来,结果是“abcCDEF”。 请改正程序中的错误,使它能得出正确的结果。 注意 :不要改动 main 函数,不得增行或删行,也不得更改程序的结构! 试题程序: #include stdio.h #include string.h void fun (char str10,int re,char *pt) /*found*/

4、 Int k,q,i; for(k=0;km;k+) q=strlen(strk); for(i=0;iq;i+) /*found*/ pti=strk,i; pt+=q; pt0=0; main() int m,h; char s1010,p120; printf(“Please enter m:“); scan(“%d“, gets(s0); printf(“Please enter %d string:“,m); for(h=0;hm;h+)gets(sh); fun(s,m,p); printf(“The result is:%s“,p); (分数:30.00)三、程序设计题(总题数:

5、1,分数:40.00)3.下列程序定义了 N x N 的二维数组,并在主函数中自动赋值。请编写函数 fun(int aN),该函数的功能是:将数组左下半三角元素中的值全部置成 0。例如 a 数组中的值为: 1 9 7 2 3 8 4 5 6 则返回主程序后 a 数组中的值应为: 0 9 7 0 0 8 0 0 0 注意 :部分源程序给出如下。 请勿改动 main 函数和其他函数中的任何内容,仅在函数 fun 的花括号中填入你编写的若干语句。 试题程序: #include conio.h #include stdio.h #include stdlib.h #define N 5 void fu

6、n (int aN) void main() int aNN,i,j; system(“CLS“); printf“*The array*/n“); fori=0;iN;i+) /*产生一个随机的 5*5 矩阵*/ forj=0;jN;j+) aij=rand()%10; printf“%4d“, aij); printf(“/n“); fun(a); printf(“THE RESULT/n“); for(i=0;iN;i+) for(j=0;jN;j+) printf(“%4d“,aij); printf(“/n“); (分数:40.00)_二级 C 语言-209 答案解析(总分:100.

7、00,做题时间:90 分钟)一、程序填空题(总题数:1,分数:30.00)1.给定程序中,函数 fun 的功能是:将形参指针所指结构体数组中的三个元素按 num 成员进行升序排列。 请在程序的下划线处填入正确的内容并把下戈线删除,使程序得出正确的结果。 注意 :部分源程序给出如下。 不得增行或删行,也不得更改程序的结构! 试题程序: #include stdio.h typedef struct int num; char name10; PERSON; /*found*/ void fun(PERSON 1, /*found*/ 2temp; if(std0.numstdi.num) tem

8、p=std0; std0=std1; std1=temp; if(std0.numstd2.num) temp=std0; std0=std2; std2=temp; if(std1.numstd2.num) temp=std1; std1=std2; std2=temp; main() PERSON std=(5,“Zhanghu“,2,“WangLi“,6,“LinMin“; int i; /*found*/ fun( 3); printf(“The result is“:); for(i=0;i3;i+) printf(“%d,%s“,stdi.num,stdi.name); (分数:3

9、0.00)解析:std PERSON std 解析 填空 1:定义形参变量引用数组 std,此时形参可以定义为指针变量,也可以定义为数组。由下文可知,程序是通过数组下标对数组元素进行操作的,因此形参应使用数组形式,而非指针形式。 填空 2:程序使用变量 temp 交换结构体数组元素的值,因而 temp 应定义为 PERSON 型。 填空 3:程序通过函数 fun 对数组 std 进行操作,因此函数的实参应为 std。二、程序改错题(总题数:1,分数:30.00)2.下列给定程序中函数 fun 的功能是:将 m(1m10)个字符串连接起来,组成一个新串,放入 pt 所指存储区中。例如,把三个串“

10、abc”、“CD”、“EF”连接起来,结果是“abcCDEF”。 请改正程序中的错误,使它能得出正确的结果。 注意 :不要改动 main 函数,不得增行或删行,也不得更改程序的结构! 试题程序: #include stdio.h #include string.h void fun (char str10,int re,char *pt) /*found*/ Int k,q,i; for(k=0;km;k+) q=strlen(strk); for(i=0;iq;i+) /*found*/ pti=strk,i; pt+=q; pt0=0; main() int m,h; char s1010

11、,p120; printf(“Please enter m:“); scan(“%d“, gets(s0); printf(“Please enter %d string:“,m); for(h=0;hm;h+)gets(sh); fun(s,m,p); printf(“The result is:%s“,p); (分数:30.00)解析:int k, q, i; pti = strki; 解析 (1)关键字书写错误,定义整型变量的关键字应使用int,而非 Int。 (2)数组元素表示错误,表示二维数组元素,应使用方括号将行坐标和列坐标分别括起来,即 strk,i应改为:strki。三、程序设

12、计题(总题数:1,分数:40.00)3.下列程序定义了 N x N 的二维数组,并在主函数中自动赋值。请编写函数 fun(int aN),该函数的功能是:将数组左下半三角元素中的值全部置成 0。例如 a 数组中的值为: 1 9 7 2 3 8 4 5 6 则返回主程序后 a 数组中的值应为: 0 9 7 0 0 8 0 0 0 注意 :部分源程序给出如下。 请勿改动 main 函数和其他函数中的任何内容,仅在函数 fun 的花括号中填入你编写的若干语句。 试题程序: #include conio.h #include stdio.h #include stdlib.h #define N 5

13、void fun (int aN) void main() int aNN,i,j; system(“CLS“); printf“*The array*/n“); fori=0;iN;i+) /*产生一个随机的 5*5 矩阵*/ forj=0;jN;j+) aij=rand()%10; printf“%4d“, aij); printf(“/n“); fun(a); printf(“THE RESULT/n“); for(i=0;iN;i+) for(j=0;jN;j+) printf(“%4d“,aij); printf(“/n“); (分数:40.00)_正确答案:()解析:void fun (int aN) int i,j; for(i=0;iN;i+) for(j=0;j=i;j+) aij=0; /*将数组左下半三角元素中的值全部置成 0*/ 解析 对于 NN 二维数组,如何表示其左下半三角元素,可以通过以下语句实现。 for(i=0;in;i+) for(j=0;j=i;j+) 外层循环用来控制矩阵的行下标,内层循环控制矩阵的列下标。注意列下标的取值范围,因为要表示下三角元素,所以 j 的范围是 0i。

展开阅读全文
相关资源
猜你喜欢
  • JIS A 1509-4-2014 0000 Test methods for ceramic tiles -- Part 4 Determination of modulus of rupture and breaking strength《瓷砖的试验方法 第4部分 破裂模数和断裂强度的测定》.pdf JIS A 1509-4-2014 0000 Test methods for ceramic tiles -- Part 4 Determination of modulus of rupture and breaking strength《瓷砖的试验方法 第4部分 破裂模数和断裂强度的测定》.pdf
  • JIS A 1509-5-2014 0625 Test methods for ceramic tiles -- Part 5 Determination of resistance to body abrasion for floor tiles《瓷砖的试验方法 第5部分 铺地瓷砖抗体磨损性能的测定》.pdf JIS A 1509-5-2014 0625 Test methods for ceramic tiles -- Part 5 Determination of resistance to body abrasion for floor tiles《瓷砖的试验方法 第5部分 铺地瓷砖抗体磨损性能的测定》.pdf
  • JIS A 1509-6-2014 6875 Test methods for ceramic tiles -- Part 6 Determination of resistance to surface abrasion for floor tiles《瓷砖的试验方法 第6部分 铺地瓷砖抗表面磨损性能的测定》.pdf JIS A 1509-6-2014 6875 Test methods for ceramic tiles -- Part 6 Determination of resistance to surface abrasion for floor tiles《瓷砖的试验方法 第6部分 铺地瓷砖抗表面磨损性能的测定》.pdf
  • JIS A 1509-7-2014 1875 Test methods for ceramic tiles -- Part 7 Determination of resistance to thermal shock《瓷砖的试验方法 第7部分 耐热冲击性的测定》.pdf JIS A 1509-7-2014 1875 Test methods for ceramic tiles -- Part 7 Determination of resistance to thermal shock《瓷砖的试验方法 第7部分 耐热冲击性的测定》.pdf
  • JIS A 1509-8-2014 1250 Test methods for ceramic tiles -- Part 8 Determination of crazing resistance for glazed tiles《瓷砖的试验方法 第8部分 釉面砖抗碎裂性的测定》.pdf JIS A 1509-8-2014 1250 Test methods for ceramic tiles -- Part 8 Determination of crazing resistance for glazed tiles《瓷砖的试验方法 第8部分 釉面砖抗碎裂性的测定》.pdf
  • JIS A 1509-9-2014 0000 Test methods for ceramic tiles -- Part 9 Determination of frost resistance《瓷砖的试验方法 第9部分 抗冻性的测定》.pdf JIS A 1509-9-2014 0000 Test methods for ceramic tiles -- Part 9 Determination of frost resistance《瓷砖的试验方法 第9部分 抗冻性的测定》.pdf
  • JIS A 1510-2-2001 Test method for door fittings of buildings -- Part 2 Fittings for door《建筑物门配件的试验方法 第2部分 门的配件》.pdf JIS A 1510-2-2001 Test method for door fittings of buildings -- Part 2 Fittings for door《建筑物门配件的试验方法 第2部分 门的配件》.pdf
  • JIS A 1510-3-2001 Test method for door fittings of buildings -- Part 3 Floor concealed door closers door closers and hinge closers《建筑物门配件的试验方法 第3部分 暗装的关门装置、关门装置.pdf JIS A 1510-3-2001 Test method for door fittings of buildings -- Part 3 Floor concealed door closers door closers and hinge closers《建筑物门配件的试验方法 第3部分 暗装的关门装置、关门装置.pdf
  • JIS A 1514-2015 1821 Test method of dew condensation for windows and doorsets《窗、门具结露的试验方法》.pdf JIS A 1514-2015 1821 Test method of dew condensation for windows and doorsets《窗、门具结露的试验方法》.pdf
  • 相关搜索

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

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