模拟试题

3773考试网计算机等级考试模拟试题正文

2014年3月全国计算机二级C语言上机模拟试题五十三2

来源:2exam.com 2013-11-12 15:59:38

解题思路: 

  本题是计算出带有头结点的单向链表中各结点数据域中值之和。 

  第一处:累加数据域中的值,所以应填:data。 

  第二处:指定p的下一个指针,所以应填:next。 

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

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

  给定程序MODI1.C中函数fun的功能是:将s所指字符串中出现的与t1所指字符串相同的子串全部替换成t2所指字符串,所形成的新串放在w所指的数组中。在此处,要求t1和t2所指字符串的长度相同。例如,当s所指字符串中的内容为:"abcdabfab",t1所指子串中的内容为:"ab",t2所指子串中的内容为:"99"时, 结果在w所指的数组中的内容应为: "99cd99f99"。 

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

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

  给定源程序: 

  #include  

  #include  

  int fun (char *s, char *t1, char *t2 , char *w) 

  { 

  int i; char *p , *r, *a; 

  strcpy( w, s ); 

  while ( *w ) 

  { p = w; r = t1; 

  while ( r ) 

  if ( *r == *p ) { r++; p++; } 

  else break; 

  if ( *r == ’\0’ ) 

  { a = w; r = t2; 

  while ( *r ){ 

  *a = *r; a++; r++ 

  } 

  w += strlen(t2) ; 

  } 

  else w++; 

  } 

  } 

  main() 

  { 

  char s[100], t1[100], t2[100], w[100]; 

  printf("\nPlease enter string S:"); scanf("%s", s); 

  printf("\nPlease enter substring t1:"); scanf("%s", t1); 

  printf("\nPlease enter substring t2:"); scanf("%s", t2); 

  if ( strlen(t1)==strlen(t2) ) { 

  fun( s, t1, t2, w); 

  printf("\nThe result is : %s\n", w); 

  } 

  else printf("Error : strlen(t1) != strlen(t2)\n"); 

  }

触屏版 电脑版
3773考试网 琼ICP备12003406号-1