知ing

最新计算机二级C语言上机试题汇编100套

NCRE研究组 编 / 高等教育出版社

゛Zirro、Y 上传

查看本书

98套: 

给定程序中,函数fun的功能是:在带有头结点的单向链表中,查找数据域中值为ch的结点。找到后通过函数值返回该结点在链表中所处的顺序号;若不存在值为ch的结点,函数返回0值。 

请在程序的下划线处填入正确的内容并把下划线删除,使程序得出正确的结果。 

注意:源程序存放在考生文件夹下的BLANK1.C中。 

不得增行或删行,也不得更改程序的结构! 

给定源程序: 

#include <stdio.h> 

#include <stdlib.h> 

#define N 8 

typedef struct list 

{ int data; 

struct list *next; 

} SLIST; 

SLIST *creatlist(char *); 

void outlist(SLIST *); 

int fun( SLIST *h, char ch) 

{ SLIST *p; int n=0; 

p=h->next; 

/ **********found**********/ 

while(p!=___1___) 

{ n++; 

/ **********found**********/ 

if (p->data==ch) return ___2___; 

else p=p->next; 

return 0; 

main() 

{ SLIST *head; int k; char ch; 

char a[N]={'m','p','g','a','w','x','r','d'}; 

head=creatlist(a); 

outlist(head); 

printf("Enter a letter:"); 

scanf("%c",&ch); 

/ **********found**********/ 

k=fun(___3___); 

if (k==0) printf("\nNot found!\n"); 

else printf("The sequence number is : %d\n",k); 

SLIST *creatlist(char *a) 

{ SLIST *h,*p,*q; int i; 

h=p=(SLIST *)malloc(sizeof(SLIST)); 

for(i=0; i<N; i++) 

{ q=(SLIST *)malloc(sizeof(SLIST)); 

q->data=a[i]; p->next=q; p=q; 

p->next=0; 

return h; 

void outlist(SLIST *h) 

{ SLIST *p; 

p=h->next; 

if (p==NULL) printf("\nThe list is NULL!\n"); 

else 

{ printf("\nHead"); 

do 

{ printf("->%c",p->data); p=p->next; } 

while(p!=NULL); 

printf("->End\n"); 

解题思路: 

本题是在给定的链表中要求找出指定的值。 

第一处:判断p是否结束,所以应填:NULL。 

第二处:在函数fun中,使用n来计算结点的位置,当找到ch值,则返回结点的位置n,所以应填:return n。 

第三处:函数调用,在主函数中已经给出了headch,所以应填:head,ch。 

*************************************************** 

给定程序MODI1.C中函数fun的功能是:删除p所指字符串中的所有空白字符(包括制表符、回车符及换行符)。 

输入字符串时用'#'结束输入。 

请改正程序中的错误,使它能输出正确的结果。 

注意:不要改动main函数,不得增行或删行,也不得更改程序的结构! 

给定源程序: 

#include <string.h> 

#include <stdio.h> 

#include <ctype.h> 

fun ( char *p) 

{ int i,t; char c[80]; 

/ ************found************/ 

For (i = 0,t = 0; p[i] ; i++) 

if(!isspace(*(p+i))) c[t++]=p[i]; 

/ ************found************/ 

c[t]="\0"; 

strcpy(p,c); 

main( ) 

{ char c,s[80]; 

int i=0; 

printf("Input a string:"); 

c=getchar(); 

while(c!='#') 

{ s[i]=c;i++;c=getchar(); } 

s[i]='\0'; 

fun(s); 

puts(s); 

解题思路: 

第一处:保留字for错写成For。 

第二处:置字符串结束符错误,应该是:'\0'。 

*************************************************** 

请编写一个函数fun,它的功能是:将ss所指字符串中所有下标为奇数位置上的字母转换为大写(若该位置上不是字母,则不转换)。 例如若输入"abc4EFg",则应输出"aBc4EFg"。 

注意部分源程序存在文件PROG1.C中。 

请勿改动主函数main和其它函数中的任何内容,仅在函数fun的花括号中填入你编写的若干语句。 

给定源程序: 

#include <stdio.h> 

#include <string.h> 

void fun ( char *ss ) 

main( ) 

{ char tt[81] ; 

printf( "\nPlease enter an string within 80 characters:\n" ); gets( tt ); 

printf( "\n\nAfter changing, the string\n \"%s\"", tt ); 

fun( tt ); 

printf( "\nbecomes\n \"%s\"\n", tt ); 

NONO ( ); 

解题思路: 

本题是考察考生对字母按要求进行转换。其中大小字母的ASCII值相差32。 

参考答案: 

void fun ( char *ss ) 

int i ; 

for(i = 1 ; i < strlen(*ss) ; i+=2) { 

if(ss[i] >= 'a' && ss[i] <= 'z') ss[i] -= 32 ; 

※※※※※※※※※※※※※※※※※※※※※※※※※ 


查看更多