模拟试题

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

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

来源:2exam.com 2013-10-30 20:42:38

 解题思路: 

  第一处:要判断t的最后一项绝对小于指定的数,由于t是实数,那么应改为while(fabs(t)>=num)。 

  第二处:t是s除以n的值,而不是取余数,所以应改t=s/n;。 

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

  请编写一个函数void fun (char a[],char b[],int n),其功能是:删除一个字符串中指定下标的字符。其中, a指向原字符串, 删除指定字符后的字符串存放在b所指的数组中,n中存放指定的下标。

  例如,输入一个字符串: World,然后输入3,则调用该函数后的结果为: Word。 

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

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

  给定源程序: 

  #include  

  #include  

  #define LEN 20 

  void fun (char a[], char b[], int n) 

  { 

  } 

  main( ) 

  { char str1[LEN], str2[LEN] ; 

  int n ; 

  printf("Enter the string:\n") ; 

  gets(str1) ; 

  printf("Enter the position of the string deleted:") ; 

  scanf("%d", &n) ; 

  fun(str1, str2, n) ; 

  printf("The new string is: %s\n", str2) ; 

  NONO() ; 

  } 

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