全国计算机二级C语言上机100题.docx
《全国计算机二级C语言上机100题.docx》由会员分享,可在线阅读,更多相关《全国计算机二级C语言上机100题.docx(199页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、上机题库第一部分填空题*勘勘*注意:源程序存放在考生文件夹下的BLANK1. C中。1 .不得增行或删行,也不得更改程序的结构!2 .请在程序下划线处填入正确的内容并把下划线删除,使程序得出正确的结果。Il蠹蠹,康维的功能是:计算出带有头接点的单向链表中各结点数据域之和作为 函数值返回。#include#include Sdefine typedefN struct8list int data;struct list SLIST;*next;SLIST *creatlist(int *); void outlist(SLIST *); int fun( SLIST *h) SLIST *p;
2、p=h-next; while (p)int s=0;s+= p-1dataP=p-一2nextreturn s;main() SLIST *head;int aN = 12, 87, 45, 32, 91, 16, 20, 48;head=creatlist(a); outlist(head);printf(nsum=%drT, fun(3);)headSLIST *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;
3、return h;void outlist(SLIST *h) SLIST *p;p=h-next;if (p=NULL) printfCThe list is NULL!n); else printf(XnHead );do printf (一%d, p-data); p=p-next; while(p!=NULL);printf(一Endn);2 .给定程序中,函数FUN的功能是:求出形参SS所指字符串数组中最长字符串的长度,其余 字符串左边用字符*补齐,使其与最长的字符串等长。字符串数组中工有M个字符串,且串 长此 #include #include#defineM5#defineN20
4、void 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+)ssi j=3; *)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);print
5、f(nThe result:n);for (i=0; iM; i+) printf (%sn, ssi);3 .人员记录由编号和出生年,月,日组成,N名人员的数据已在主函数中存入结构体数组std 且编号唯一。函数fun的功能是;找出指定编号人员的数据,作为函数值返回,有主函数输 出,若指定编号不存在,返回数据中的编号为空串。#include#includedefine N 8 typedef struct char num10;int year, month, day ;)STU;1fun (STU *std, char *num)STU int i;STU a=“,9999, 99, 99;
6、for (i=0; iN; i+)if ( strcmp (2, num) =0 ) stdi. numreturn (3);stdireturn a; main()STU stdN = rilllir, 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=666666”;p=fun(std, n);if
7、 (p. num0=0)printf(*nNot found !n);elseprintf(nSucceed !n );printf (%s%d-%d-%dnz,, p. num, p. year, p. month, p. day);) 4 .给定程序中已建立一个带有头结点的单向链表,链表中的各结点按数据域递增有序链接。 函数fun的功能:删除链表中数据域值相同的结点,使之保留一个。#include#includedefine N 8 typedef struct list int data;struct list *next; SLIST;void fun( SLIST *h) SLIST
8、 *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;nextSLIST *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-
9、next;if (p=NULL) printf(*nThe list is NULL!n); else printf(nHead);do printfp-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 after deleting :n); outlis
10、t(head);5 .函数fun的功能是进行数字字符转换。若形参ch中是数字字符F9,贝0转换成9,T转换成8, 2转换成79转换成O;若是其他字符则保持不变;并将转换后 的结果作为函数值返回.#include 1fun (char ch)charif (ch= Q9 &-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 ; c2 = fun (cl);printf(cl=%cc
11、2=%cn”, cl, c2);cl=,a ; c2 = fun(cl);printf(cl=%cc2=%cn”, cl, c2);6 .给定程序中,函数fun的功能是:对形参ss所指字符串数组中的M字符串按长度由短到长 进行排序。SS所指字符串数组中共有M个字符串,且串长3#includeinclude#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; i+) k=i;for(j=1; jnj) k=2;jif (k
12、!=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(nThe result :n);for(i=0; iM; i+) printf(%sn”, ssi);7 .函数FUN的功能是:从三个
13、形参a, b,c中找出中间的哪个数,作为函数值返回。例如,当 a=3, b=5, c=4 时,中数为 4。ttinclude 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 .给定程序中,函数FUN的功能是:统计出带有头结点的单向链表中接点的
14、个数,存放在形参 N所指的存储单元中。#include#include#define 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, 32, 91,16, 20, 48, num;head=creatlis
15、t(a); outlist(head);fun (head,3);&numprintf (/znnumber=%dn/z, 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 list is NULL!n);else printf(*XnHead
16、);do printf(一%d”, p-data); p=p-next; while(p!=NULL);printf(-Endn); 9 .给定程序的功能是:调用函数FUN将指定源文件中的内容复制到指定的目标文件中,复制 成功时函数返回值为1,失败时返回值为0。在复制的过程中,把复制的内容输出到终端屏 幕。主函数中源文件名房子变量sfname中,目标文件名放在变量tfname中。#includeincludeint fun(char *source, char *target) FILE *fs, *ft; char ch;if(fs=fopen(source,1)=NULL)rreturn
17、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=niyfile2;FILE *myf; int i; char c;myf=fopen(sfname, w);printf(nThe origin
18、al data :n);for(i=l; i30; i+) c=A+rand( )%25;fprintf (myf, %c”, c); printf C%c*, c); fclose(myf);printf(nn);if (fun(sfname, tfname) printf(Succeed!);else printf(Fail!);10 .给定 程序中,函数FUN的功能是:在形参S所指字符串中的每个数字字符之后插入一个*o例如,形参S所指字符串为:def35adh3kjsdf7.执行结果为:def3*5*adh3*kjsdf7*#include void fun(char *s) int i
19、, j, n;for(i=0; si!=0; i+)if(si= 0,1 sii; j)sj+l= 3;sji=i+l;main() char s80=ba3a54cd23a”;printf(nThe original string is : %sn”,s);fun(s);printf(nThe result is : %sn”, s);11 .给定程序中,函数FUN的功能是:将形参STD所指结构体数组中年龄最大者的数据作为函 数值返回,并将main函数输出。#include typedef struct char name10;int age;STD;STD fun(STD std, int
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 全国计算机 二级 语言 上机 100
限制150内