二级c语言上机考试一百题及答案.docx
《二级c语言上机考试一百题及答案.docx》由会员分享,可在线阅读,更多相关《二级c语言上机考试一百题及答案.docx(194页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、全国计算机考试二级C语言上机考试一百题及答案第一部分填空题注意:源程序存放在考生文件夹下的BLANKLC中。1 .不得增行或删行,也不得更改程序的结构!2 .请在程序下划线处填入正确的内容并把下划线删除,使程序得出正确的结果。1 .给定程序中,函数FUN的功能是:计算出带有头接点的单向链表中各结点数据域之和作为 函数值返回。#include include #define N 8 typedef struct list int data;struct list *next; SLIST;SLIST *creatlist(int *);void outlist(SLIST *); int fun
2、( SLIST *h) SLIST *p; int s=0;p=h-next; while(p) (s+= p-1;datap=p-2;next) 一 return s;main() SLIST *head;int aN = 12,87, 45, 32, 91,16, 20, 48);head二creatlist(a);outlist(head);printf(*nsum=%dn*, fun(3);headSLIST *creatlist(int a) SLIST *h,*p,*q;int i;h=p=(SLIST *)malloc(sizeof(SLIST);for(i=0; idata=a
3、i; p-next=q; p=q;p-next=0; return h;)void outlist(SLIST *h) SLIST *p;p=h-next;if (p=NULL) printf(*The list is NULL!n*); else printf(XnHead );do printf (一%d”, p-data); p=p-next; while(p!=NULL);printf(-Endn);2 .给定程序中,函数FUN的功能是:求出形参SS所指字符串数组中最长字符串的长度,其余 字符串左边用字符*补齐,使其与最长的字符串等长。字符串数组中工有M个字符串,且串 长N。inclu
4、de include #defineM5ttdefineN20void fun(char (*ss)N) int i, j, k=0, n, m, len;for(i=0; in) n=len; k=1;ifor(i=0; i=0; j)lenssi m-=ssi j;for(j=0; jn-len; j+)ssij=3;*main()char sMN = shanghai, guangzhou, beijing, tianjing, cchongqing; int i;printf(nThe original strings are :n);for (i=0; iM; i+) printfs
5、si);printf(n);fun(ss);printf(nThe result:n);for (i=0; iM; i+) printf(%sn, ssi);3 .人员记录由编号和出生年,月,日组成,N名人员的数据已在主函数中存入结构体数组std 且编号唯一。函数fun的功能是;找出指定编号人员的数据,作为函数值返回,有主函数输 出,若指定编号不存在,返回数据中的编号为空串。#includeitincludettdefine N 8 typedef struct char num10;int year, month, day ;STU;1fun (STU *std, char *num)STU
6、 int i;STU a=,9999,99,99;for (i=0; iN; i+)if ( strcmp (2, num) =0 ) stdi. numreturn (3);stdireturn a; main()STU stdN = 111111”, 1984,2,15, “222222”, 1983,9,21, “333333,1984,9,1,444444”, 1983, 7,15, “555555,1984, 9, 28, “666666”, 1983,11,15,777777,1983, 6, 22, “888888”, 1984, 8,19;STU p;char n10=6666
7、66”;p=fun(std, n);if (p. num0=0)printf(*nNot found !n);elseprintf(XnSucceed !n );printf (%s%d-%d-%dn/z, p. num, p. year, p. month, p. day);) 4 .给定程序中已建立一个带有头结点的单向链表,链表中的各结点按数据域递增有序链接。 函数fun的功能:删除链表中数据域值相同的结点,使之保留一个。include4includedefine N 8typedef struct list int data;struct list *next; SLIST;void f
8、un( SLIST *h) SLIST *p, *q;p=h-next;if (p!=NULL) q=p-next;while(q!=NULL) if (p-data=q-data) p-next=q-next;free (1);qq=p-2;next else p=q;q=q-3;next)SLIST *creatlist(int *a) SLIST *h, *p, *q; int i;h=p= (SLIST *)malloc(sizeof(SLIST);for(i=0; idata=ai; p-next=q; p=q;)p-next=O;return h;void outlist(SLIS
9、T *h) SLIST *p; p=h-next;if (p=NULL) printf(nThe list is NULL!n); else printf(nHead);do printf (一(!”, p-data); p=p-next; while (p!=NULL);printf(-Endn);main() SLIST *head; int aN = l, 2, 2, 3, 4, 4, 4, 5; head=creatlist(a);printf(nThe list before deleting :n); outlist(head);fun(head);printf(nThe list
10、 after deleting :n); outlist(head);5 .函数fun的功能是进行数字字符转换。若形参ch中是数字字符F9,贝0转换成9, T转换成8, 2转换成79转换成0;若是其他字符则保持不变;并将转换后的结果作为函数值返回. ttinclude 1fun(char ch)char (if (ch=0 &-2)ch=9return 9 - (ch-3);Oreturn ch ; main() char cl, c2;printf(nThe result :n);cl=,2 ; c2 = fun (cl);printf(cl=%cc2=%cn”, cl, c2);cl=,8
11、 ; c2 = fun (cl);printf(cl=%cc2=%cn”, cl, c2);cl二a ; c2 = fun (cl);printf(cl=%cc2=%cn”, cl, c2);6 .给定程序中,函数fun的功能是:对形参ss所指字符串数组中的M字符串按长度由短到长 进行排序。SS所指字符串数组中共有M个字符串,且串长3 tfincludeinclude#defineM5ttdefineN20void fun(char (*ss)N) int i, j, k, nM; char t N;for(i=0; iM; i+) ni=strlen(ssi);for(i=0; iM-l;
12、i+) k=i;for(j=1; jnj) k=_2_;jif (k!=i) strcpy(t, ssi); strcpy(ssi, ssk);strcpy(ssk,3);tnk=ni; ) main() char sMN=shanghai, guangzhou, beijing, tianjing, cchongqing;int i;printf(*nThe original strings are :n); for(i=0; iM; i+) printf(%sn”, ssi); printf(n);fun(ss);printf(XnThe result :n);for(i=0; iM; i
13、+) printf(sn”, ssi);7 .函数FUN的功能是:从三个形参a, b,c中找出中间的哪个数,作为函数值返回。例如,当 a=3, b=5, c=4 时,中数为 4。#include int fun(int a, int b, int c) int t;t = (ab) ? (bc? b : (ac?c:1) : (ac)?2 : (bc)?c:3);return t;1. a 2. a 3. bmain() int al=3, a2=5, a3=4, r;r = fun (al, a2, a3);printf(nThe middle number is : %dn”, r);8
14、.给定程序中,函数FUN的功能是:统计出带有头结点的单向链表中接点的个数,存放在形参 N所指的存储单元中。ttinclude4includetfdefine N 8typedef struct list int data;struct list *next; SLIST;SLIST *creatlist(int *a);void outlist(SLIST *);void fun( SLIST *h, int *n) SLIST *p;*n=1;0p=h-next;while(p) (*n)+;p=2;p-nextmain() SLIST *head;int aN = 12, 87, 45,
15、32, 91,16, 20, 48, num;head=creatlist(a); outlist(head);fun (head,3);&numprintf (rmumber=%dn”, num);SLIST *creatlist(int a) SLIST *h, *p, *q;int i;h=p=(SLIST *)malloc(sizeof(SLIST);for(i=0; idata=ai; p-next=q; p=q;)p-next=0;return h;void outlist(SLIST *h) SLIST *p;p=h-next;if (p=NULL) printf(*The li
16、st is NULL!n);else printf(XnHead );do printf(*-%d, p-data); p=p-next; while(p!=NULL);printf(-Endn);9 .给定程序的功能是:调用函数FUN将指定源文件中的内容复制到指定的目标文件中,复制 成功时函数返回值为1,失败时返回值为0o在复制的过程中,把复制的内容输出到终端屏 幕。主函数中源文件名房子变量sfname中,目标文件名放在变量tfname中。ttincludeincludeint fun(char *source, char *target) FILE *fs, *ft; char ch;if
17、(fs=fopen(source,1)=NULL)rreturn 0;if (ft=fopen (target, w) =NULL)return 0;printf(*nThe data in file :n);ch=fgetc(fs);while(!feof (2)fs putchar( ch );fputc (ch,3);ftch=fgetc(fs);)fclose(fs); fclose(ft);printf(nn);return 1;)main() char sfname20=myfilel”, tfname20=myfile2”;FILE *myf; int i; char c;myf
18、=fopen(sfname,,zw/z);printf(*nThe original data :n);for (i=l; i30; i+) c=A+rand( )%25;fprintf (myf, %c”, c); printf c); fclose(myf);printf(nn);if (fun(sfname, tfname) printf(Succeed!);else printf(Fail!);10 .给定程序中,函数FUN的功能是:在形参S所指字符串中的每个数字字符之后插入一个 *o例如,形参S所指字符串为:def35adh3kjsdf7.执行结果为:def3*5*adh3*kjsd
19、f7* include void fun(char *s) int i, j, n;for(i=0; si!=0; i+)if(si=0 _1 sii; j-)sj+l= 3;sji=i+l;)main() char s 80=ba3a54cd23a”;printf(nThe original string is : %sn,s);fun(s);printf(nThe result is : %sn”, s);11 .给定程序中,函数FUN的功能是:将形参STD所指结构体数组中年龄最大者的数据作为函 数值返回,并将main函数输出。#include typedef struct char na
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 二级 语言 上机 考试 一百 答案
限制150内