1、二级 C 语言-329 (1)及答案解析(总分:100.00,做题时间:90 分钟)一、程序填空题(总题数:1,分数:30.00)1.请补充函数 proc(),该函数的功能是判断一个数是否为回义数。当字符串是回文数时,函数返回字符串:yes!,否则函数返回字符串:no!,并在主函数中输出。所谓回文,即正向与反向的拼写都一样,例如,abcdcba。 注意:部分源程序给出如下。 请勿改动主函数 main 和其他函数中的任何内容,仅在函数 proc()的横线上填入所编写的若干表达式或语句。 试题程序: #includestring.h #includestdio.h char*proc(char*s
2、tr) char*str1, *str2; int i, t=0; str1=str; sir2=str+strlen(str)-1; for(i=0; 1; i+) if( 2) t=1; break; if( 3) return(“yes!“); else return(“no!“); void main() char str50; printf(“Input:“); scanf(“%s“, str); printf(“%s/n“, proc(str); (分数:30.00)二、程序改错题(总题数:1,分数:40.00)2.下列给定的程序中,函数 proc()的功能是:判断字符 ch 是否
3、与 str 所指字符串中的某个字符相同;若相同,则什么也不做,若不同,则将其插在串的最后。 请修改程序中的错误,使它能得出正确的结果。 注意:不要改动 main()函数,不得增行或删行,也不得更改程序的结构。 试题程序: #includestdlib.h #includeconio.h #includestdio.h #includestring.h /*found* void proc(char str, char ch) while(*str /*found* if(*str=ch) str0=ch; /*found* str1=“0“; void main() char str81, c
4、h; system(“CLS“); printf(“/nPlease enter a string: “); gets(str); printf(“/n Please enter the character to search: “); ch=getchar(); proc(str, ch); printr(“/nThe result is %s/n“, str); (分数:40.00)_三、程序设计题(总题数:1,分数:30.00)3.下列程序定义了 MM 的二维数组,并在主函数中赋值。请编写函数 proc(),函数的功能是:求出数组周边元素的平均值并作为函数值返回给主函数中的 s。例如,若
5、 a 数组中的值为: a=0 1 2 3 4 5 9 7 4 5 4 3 8 3 6 3 5 6 8 7 2 1 0 9 8 则返回主程序后,s 的值为 3.750000。 注意:部分源程序给出如下。 请勿改动 main()函数和其他函数中的任何内容,仅在函数 proc()的花括号中填入所编写的若干语句。 试题程序: #includestdio.h #includeconio.h #includestdlib.h #define M 5 double proc(int wM) void main() int aMM=0, 1, 2, 3, 4, 5, 9, 7, 4, 5, 4, 3, 8,
6、3, 6, 3, 5, 6, 8, 7, 2, 1, 0, 9, 8; int i, j; double s; system(“CLS“); printf(“*The array*/n“); for(i=0; iM; i+) for(j=0; jM; j+) printf(“%4d“, aij); printf(“/n“); s=proc(a); printf(“*THE RESULT*/n“); printf(“The sum is: %1f/n“, s); (分数:30.00)_二级 C 语言-329 (1)答案解析(总分:100.00,做题时间:90 分钟)一、程序填空题(总题数:1,分
7、数:30.00)1.请补充函数 proc(),该函数的功能是判断一个数是否为回义数。当字符串是回文数时,函数返回字符串:yes!,否则函数返回字符串:no!,并在主函数中输出。所谓回文,即正向与反向的拼写都一样,例如,abcdcba。 注意:部分源程序给出如下。 请勿改动主函数 main 和其他函数中的任何内容,仅在函数 proc()的横线上填入所编写的若干表达式或语句。 试题程序: #includestring.h #includestdio.h char*proc(char*str) char*str1, *str2; int i, t=0; str1=str; sir2=str+strl
8、en(str)-1; for(i=0; 1; i+) if( 2) t=1; break; if( 3) return(“yes!“); else return(“no!“); void main() char str50; printf(“Input:“); scanf(“%s“, str); printf(“%s/n“, proc(str); (分数:30.00)解析:i=strlen(str)/2 *str1+!=*str2- t=0解析 判断字符串是否为回文数,将第一个与最后一个比较,第二个与倒数第二个比较,直到字符串的中间,只有当所有的都相等时才为回文数,需要比较字符串长度的 1/2
9、 次,因此,第一处填“i=strlen(str)/2”;变量 str1 和 str2 分别指向字符串的第一个和最后一个字符,每一次比较后 strl 后移一个位置,str2 前移一个位置进行比较。变量 t 为字符串是否为回文的标志,当对应位置的字符不相等时变量 t 赋值为 1,因此,第二处填“*str1+!=*str2-”;变量 t 为 0 时,字符串为回文数,因此,第三处填“t=0”。二、程序改错题(总题数:1,分数:40.00)2.下列给定的程序中,函数 proc()的功能是:判断字符 ch 是否与 str 所指字符串中的某个字符相同;若相同,则什么也不做,若不同,则将其插在串的最后。 请修
10、改程序中的错误,使它能得出正确的结果。 注意:不要改动 main()函数,不得增行或删行,也不得更改程序的结构。 试题程序: #includestdlib.h #includeconio.h #includestdio.h #includestring.h /*found* void proc(char str, char ch) while(*str /*found* if(*str=ch) str0=ch; /*found* str1=“0“; void main() char str81, ch; system(“CLS“); printf(“/nPlease enter a strin
11、g: “); gets(str); printf(“/n Please enter the character to search: “); ch=getchar(); proc(str, ch); printr(“/nThe result is %s/n“, str); (分数:40.00)_正确答案:()解析:(1)错误:void proc(char str, char ch) 正确:void proc(char*str, char ch) (2)错误:if(*str=ch) 正确:if(*str=“/0“) (3)错误:str1=“0“; 正确:str1=“/0“; 解析 形参的个数和类
12、型由调用该函数的实参的个数和类型决定,由 main()函数中调用的函数 proc()可知,“void proc(char str, char ch)”应改为“void proc(chgr*str, charch)”;将字符串中的每一个字符与给定字符相比较,当字符串结束或者字符串中有与给定字符相同的字符时结束。如果到字符串的最后一个字符仍没找到与给定字符相同的字符,将给定字符插在字符串的最后,因此,“if(*str=ch)”应改为“if(*str=“/0“)”;最后还要为字符串添加一个结束符,因此“str1=“0“;”应改为“str1=“/0“”。三、程序设计题(总题数:1,分数:30.00)3
13、.下列程序定义了 MM 的二维数组,并在主函数中赋值。请编写函数 proc(),函数的功能是:求出数组周边元素的平均值并作为函数值返回给主函数中的 s。例如,若 a 数组中的值为: a=0 1 2 3 4 5 9 7 4 5 4 3 8 3 6 3 5 6 8 7 2 1 0 9 8 则返回主程序后,s 的值为 3.750000。 注意:部分源程序给出如下。 请勿改动 main()函数和其他函数中的任何内容,仅在函数 proc()的花括号中填入所编写的若干语句。 试题程序: #includestdio.h #includeconio.h #includestdlib.h #define M 5
14、 double proc(int wM) void main() int aMM=0, 1, 2, 3, 4, 5, 9, 7, 4, 5, 4, 3, 8, 3, 6, 3, 5, 6, 8, 7, 2, 1, 0, 9, 8; int i, j; double s; system(“CLS“); printf(“*The array*/n“); for(i=0; iM; i+) for(j=0; jM; j+) printf(“%4d“, aij); printf(“/n“); s=proc(a); printf(“*THE RESULT*/n“); printf(“The sum is:
15、 %1f/n“, s); (分数:30.00)_正确答案:()解析:double proc(int wN) int i, j, k=0; double av=0.0; for(i=0; iM; i+) for(j=0; jM; j+) /周边元素的特点是行或列下标为 0,或为 N-1 if(i=0|i=M-1|j=0|j=M-1) /if 语句判断是否为周边元素 av=av+wij; /将其和放到 av 变量中 k+; return av/k; /平均值返回给主函数中的 s 解析 要求出数组周边元素的平均值,首先要求出周边元素的和,周边元素的特点为行或列下标为0,或为 N-1,根据其特点求出所有周边元素的和,再求出其平均值,并返回给主函数。