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

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

1、二级 C 语言-328 (1)及答案解析(总分:100.00,做题时间:90 分钟)一、程序填空题(总题数:1,分数:30.00)1.下列给定程序中,函数 proc()的功能是:对 M 名学生的学习成绩,按从高到低的顺序找出前 m(m10)名学生来,并将这些学生数据存放在一个动态分配的连续存储区中,此存储区的首地址作为函数值返回。 注意:部分源程序给出如下。 请勿改动 main()函数和其他函数中的任何内容,仅在函数 proc()的横线上填入所编写的若干表达式或语句。 试题程序: #includestdlib.h #includestdio.h #includemalloc.h #includ

2、estring.h #includeconio.h #define M 10 typedef struct ss char num10; int order; STU; STU*proc(STU a, int m) STU bM, *tt; int i, j, k; 1; for(i=0; iM; i+) bi=ai; for(k=0; km; k+) for(i=j=0; iM; i+) if( 2) j=i; ttk=bj; bj.order=0; return 3; void outresuh(STU a, FILE*pf) int i; for(i=0; iM; i+) printf(

3、pf, “No=%s Mark=%d/n“, ai.num, ai.order); fprintf(pf, “/n/n“); void main() STU stuM=“A01“, 60, “A02“, 90, “A03“, 88, “A04“, 76, “A05“, 63, “A06“, 69, “A07“, 100, “A08“, 87, “A09“, 66, “A10“, 95; STU*porder; int i, m; system(“CLS“); printf(“*The Origial data*/n“); outresult(stu, stdout); printf(“/nGi

4、ve the numeber of the students who have betler score: “); scanf(“%d“, while(m10) printf(“/nGive the number of the studets who have better score: “); scanf(“%d“, porder=proc(stu, m); printf(“*THE RESULT*/n“); printf(“*The top students*/n“); for(i=0; im; i+) printf(“%s%d/n“, porderi.num, porderi.order

5、); free(porder); (分数:30.00)二、程序改错题(总题数:1,分数:40.00)2.已知一个数列从 0 项开始的前 3 项为 0,0,1,以后的各项都是其相邻的前 3 项之和。下列给定的程序中,函数 proc()的功能是:计算并输出该数列前 n 项的和 sum。n 的值通过形参传入。例如,当 n=20 时,程序的输出结果应为 42762.000000。 请修改程序中的错误,使它能得到正确结果。 注意:不要改动 main()函数,不得增行或删行,也不得更改程序的结构。 试题程序: #includestdlib.h #includeconio.h #includestdio.h

6、 double proc(int n) double sum, s0, s1, s2, s; int k; sum=1.0; if(n=2) sum=0.0; s0=0.0; s1=0.0; s2=1.0; /*found* for(k=4; kn; k+) s=s0+s1+s2; sum+=s; s0=s1; s1=s2; /*found* s2=s; return sum; void main() int n; system(“CLS“); printf(“Input N=“); scanf(“%d“, printf(“%f/n“, proc(n); (分数:40.00)_三、程序设计题(

7、总题数:1,分数:30.00)3.请编写一个函数 proc(),它的功能是:求出 1m(含 m)能被 7 或 11 整除的所有整数并将其放在数组 a中,通过 n 返回这些数的个数。 例如,若传给 m 的值为 70,则程序输出: 7 11 14 21 22 28 33 35 42 44 49 55 56 63 66 70 注意:部分源程序给出如下。 请勿改动 main()函数和其他函数中的任何内容,仅在函数 proc()的花括号中填入所编写的若干语句。 试题程序: #includestdlib.h #includeconio.h #includestdio.h #define N 100 voi

8、d proc(int m, int*a, int*n) void main() int arrN, n, k; system(“CLS“); proc(70, art, for(k=0; kn; k+) if(k+1)%20=0)/每行输出 20 个数 printf(“%4d“, arrk); printf(“/n“); else printf(“%4d“, arrk); printf(“/n“); (分数:30.00)_二级 C 语言-328 (1)答案解析(总分:100.00,做题时间:90 分钟)一、程序填空题(总题数:1,分数:30.00)1.下列给定程序中,函数 proc()的功能是

9、:对 M 名学生的学习成绩,按从高到低的顺序找出前 m(m10)名学生来,并将这些学生数据存放在一个动态分配的连续存储区中,此存储区的首地址作为函数值返回。 注意:部分源程序给出如下。 请勿改动 main()函数和其他函数中的任何内容,仅在函数 proc()的横线上填入所编写的若干表达式或语句。 试题程序: #includestdlib.h #includestdio.h #includemalloc.h #includestring.h #includeconio.h #define M 10 typedef struct ss char num10; int order; STU; STU

10、*proc(STU a, int m) STU bM, *tt; int i, j, k; 1; for(i=0; iM; i+) bi=ai; for(k=0; km; k+) for(i=j=0; iM; i+) if( 2) j=i; ttk=bj; bj.order=0; return 3; void outresuh(STU a, FILE*pf) int i; for(i=0; iM; i+) printf(pf, “No=%s Mark=%d/n“, ai.num, ai.order); fprintf(pf, “/n/n“); void main() STU stuM=“A01

11、“, 60, “A02“, 90, “A03“, 88, “A04“, 76, “A05“, 63, “A06“, 69, “A07“, 100, “A08“, 87, “A09“, 66, “A10“, 95; STU*porder; int i, m; system(“CLS“); printf(“*The Origial data*/n“); outresult(stu, stdout); printf(“/nGive the numeber of the students who have betler score: “); scanf(“%d“, while(m10) printf(

12、“/nGive the number of the studets who have better score: “); scanf(“%d“, porder=proc(stu, m); printf(“*THE RESULT*/n“); printf(“*The top students*/n“); for(i=0; im; i+) printf(“%s%d/n“, porderi.num, porderi.order); free(porder); (分数:30.00)解析:tt=(STU*)malloc(sizeof(STU)*m) bi.orderbj.order tt解析 由函数 p

13、roc()可知,变量tt 用来存放前 m 名学生的数据,首先要为其分配内存空间,因此第一空填“tt=(STU*)malloc(sizeof(STU)*m)”;依次找出成绩最高的前 m 名学生的记录,因此第二空填“bi.orderbj.order”;前 m 名学生的数据存放在 tt 指向的存储区中,最后返回给主函数,因此第三空填“tt”。二、程序改错题(总题数:1,分数:40.00)2.已知一个数列从 0 项开始的前 3 项为 0,0,1,以后的各项都是其相邻的前 3 项之和。下列给定的程序中,函数 proc()的功能是:计算并输出该数列前 n 项的和 sum。n 的值通过形参传入。例如,当 n

14、=20 时,程序的输出结果应为 42762.000000。 请修改程序中的错误,使它能得到正确结果。 注意:不要改动 main()函数,不得增行或删行,也不得更改程序的结构。 试题程序: #includestdlib.h #includeconio.h #includestdio.h double proc(int n) double sum, s0, s1, s2, s; int k; sum=1.0; if(n=2) sum=0.0; s0=0.0; s1=0.0; s2=1.0; /*found* for(k=4; kn; k+) s=s0+s1+s2; sum+=s; s0=s1; s

15、1=s2; /*found* s2=s; return sum; void main() int n; system(“CLS“); printf(“Input N=“); scanf(“%d“, printf(“%f/n“, proc(n); (分数:40.00)_正确答案:()解析:(1)错误:for(k=4; kn; k+) 正确:for(k=4; k=n; k+) (2)错误:s2=s; 正确:s2=s; 解析 题目中要求计算数列前 n 项的和,包括第 n 项,因此“for(k=4; kn; k+)”中的“kn”应改为“k=n”;根据 C 语言的语法规则,for 循环体中的多条语句必须

16、在大括号“”和“”之间,因此,要在语句 s2=s;后加上。三、程序设计题(总题数:1,分数:30.00)3.请编写一个函数 proc(),它的功能是:求出 1m(含 m)能被 7 或 11 整除的所有整数并将其放在数组 a中,通过 n 返回这些数的个数。 例如,若传给 m 的值为 70,则程序输出: 7 11 14 21 22 28 33 35 42 44 49 55 56 63 66 70 注意:部分源程序给出如下。 请勿改动 main()函数和其他函数中的任何内容,仅在函数 proc()的花括号中填入所编写的若干语句。 试题程序: #includestdlib.h #includeconi

17、o.h #includestdio.h #define N 100 void proc(int m, int*a, int*n) void main() int arrN, n, k; system(“CLS“); proc(70, art, for(k=0; kn; k+) if(k+1)%20=0)/每行输出 20 个数 printf(“%4d“, arrk); printf(“/n“); else printf(“%4d“, arrk); printf(“/n“); (分数:30.00)_正确答案:()解析:void proc(int m, int*a, int*n) int i, j=0; for(i=1; i=m; i+) /进行 m 次循环 if(i%7=0|i%11=0) /能被 7 或 11 整除的所有整数 aj+=i; /符合条件的数放在数组 a 中 *n=j; /返回这些数的个数 解析 本题需要先判断 1m 中每一个整数能否被 7 或 11 整除,然后将符合条件的整数放在数组 a 中,最后将符合条件的数的个数通过形参 n 返回主函数。

展开阅读全文
相关资源
猜你喜欢
相关搜索
资源标签

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

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