1、二级 C 语言-299 (1)及答案解析(总分:100.00,做题时间:90 分钟)一、程序填空题(总题数:1,分数:30.00)1.请补充函数 proc(),该函数的功能是:删去一维数组中所有相同的数,使之只剩一个。数组中的数已按由小到大的顺序排列,函数返回删除后数组中数据的个数。 例如,若一维数组中的数据是:1 1 2 2 2 3 4 4 5 5 6 6 6 7 7 8 10 10。 删除后,数组中的内容应该是:1 2 3 4 5 6 7 8 10。 注意:部分源程序给出如下。 请勿改动 main()函数和其他函数中的任何内容,仅在函数 proc()的横线上填入所编写的若干表达式或语句。
2、试题程序: #includestdio.h #define M 80 int proc(int arr, int n) int i, t, j=0; t=arr0; for(i=1; in; i+) if( 1) ; else 2; t=arri; arrj+=t; return j; void main() int arrM=1, 1, 2, 2, 2, 3, 4, 4, 5, 5, 6, 6, 6, 7, 7, 8, 10, 10, i, n=18; printf(“The original data: /n“); for(i=0; in; i+) printf(“%4d“, arri);
3、 n=proc(arr, n); printf(“/n/nThe data after deleted; /n“); for(i=0; in; i+) printf(“%4d“, arri); printf(“/n“); (分数:30.00)二、程序改错题(总题数:1,分数:40.00)2.下列给定程序中,函数 proc()的功能是:将 m(1m10)个字符串连接起来,组成一个新串,放入 pt所指字符串中,例如,把 2 个字符串 abc、CD 串联起来,结果是 abcCD。 请修改程序中的错误,使它能得出正确的结果。 注意:不要改动 main()函数,不得增行或删行,也不得更改程序的结构。 试
4、题程序: #includestdlib.h #includeconio.h #includestring.h #includestdio.h /*found* int proc(char str10, int m, char *pt) int k, q, i, j=0; for(k=0; km; k+) q=strlen(strk); j+=q; for(i=0; iq; i+) /*found* pti=strk, i; pt+=q; pt0=0; pt-=j; void main() int m, h; char str1010, p120; system(“CLS“); printf(“
5、/nPlease enter m: “); scanf(“%d“, gets(str0); printf(“/nPlease enter %d string: /n“, m); for(h=0; hm; h+) gets(strh); proc(str, m, p); printf(“/nThe result is: %s/n“, p); (分数:40.00)_三、程序设计题(总题数:1,分数:30.00)3.请编写函数 proc(),该函数的功能是:将 M 行 N 列的二维数组中的字符数据,按列的顺序依次放到一个字符串中。例如,若二维数组中的数据为: W W W S S S H H H I
6、I I 则字符串中的内容应是 WSHIWSHIWSHI。 注意:部分源程序给出如下。 请勿改动 main()函数和其他函数中的任何内容,仅在函数 proc()的花括号中填入所编写的若干语句。 试题程序: #includestdio.h #define M 4 #define N 3 void proc(char(*s)N,char*b) void main() char a100, wMN=“W“, “W“, “W“, “S“, “S“, “S“, , “H“, “H“, “H“, , “I“, “I“, “I“; int i, j; printf(“The matrix:/n“); for(
7、i=0; iM; i+) for(j=0; jN; j+) printf(“%3c“, wij); printf(“/n“); proc(w, a); printf(“The A string:/n“); puts(a); printf(“/n/n“); (分数:30.00)_二级 C 语言-299 (1)答案解析(总分:100.00,做题时间:90 分钟)一、程序填空题(总题数:1,分数:30.00)1.请补充函数 proc(),该函数的功能是:删去一维数组中所有相同的数,使之只剩一个。数组中的数已按由小到大的顺序排列,函数返回删除后数组中数据的个数。 例如,若一维数组中的数据是:1 1 2
8、 2 2 3 4 4 5 5 6 6 6 7 7 8 10 10。 删除后,数组中的内容应该是:1 2 3 4 5 6 7 8 10。 注意:部分源程序给出如下。 请勿改动 main()函数和其他函数中的任何内容,仅在函数 proc()的横线上填入所编写的若干表达式或语句。 试题程序: #includestdio.h #define M 80 int proc(int arr, int n) int i, t, j=0; t=arr0; for(i=1; in; i+) if( 1) ; else 2; t=arri; arrj+=t; return j; void main() int ar
9、rM=1, 1, 2, 2, 2, 3, 4, 4, 5, 5, 6, 6, 6, 7, 7, 8, 10, 10, i, n=18; printf(“The original data: /n“); for(i=0; in; i+) printf(“%4d“, arri); n=proc(arr, n); printf(“/n/nThe data after deleted; /n“); for(i=0; in; i+) printf(“%4d“, arri); printf(“/n“); (分数:30.00)解析:t=arri arrj+=t解析 要实现删去一维数组中所有相同的数,可以通过
10、将不同的字符放在原数组中来实现。当后一个字符跟前一个字符相同时,不做任何操作,因此第一空填“t=arri”;当后一个字符与前一个字符不同时,放入数组 arr 中,因此第二空填“arj+=t”。二、程序改错题(总题数:1,分数:40.00)2.下列给定程序中,函数 proc()的功能是:将 m(1m10)个字符串连接起来,组成一个新串,放入 pt所指字符串中,例如,把 2 个字符串 abc、CD 串联起来,结果是 abcCD。 请修改程序中的错误,使它能得出正确的结果。 注意:不要改动 main()函数,不得增行或删行,也不得更改程序的结构。 试题程序: #includestdlib.h #in
11、cludeconio.h #includestring.h #includestdio.h /*found* int proc(char str10, int m, char *pt) int k, q, i, j=0; for(k=0; km; k+) q=strlen(strk); j+=q; for(i=0; iq; i+) /*found* pti=strk, i; pt+=q; pt0=0; pt-=j; void main() int m, h; char str1010, p120; system(“CLS“); printf(“/nPlease enter m: “); sca
12、nf(“%d“, gets(str0); printf(“/nPlease enter %d string: /n“, m); for(h=0; hm; h+) gets(strh); proc(str, m, p); printf(“/nThe result is: %s/n“, p); (分数:40.00)_正确答案:()解析:(1)错误:int proc(char str10, int m, char *pt) 正确:void proc(char str10, int m, char *pt) (2)错误:pti=strk, i 正确:pti=strkI 解析 由主函数中的函数调用和 p
13、roc()函数的定义可知,函数 proc()没有返回值。因此,“int proc(char str10, int m, char *pt)”中的 int 应改为 void;根据 C 语言的语法规则,二维数组的行下标和列下标应分别加中括号,因此“pti=strk,i”应改为“pti=strki”。三、程序设计题(总题数:1,分数:30.00)3.请编写函数 proc(),该函数的功能是:将 M 行 N 列的二维数组中的字符数据,按列的顺序依次放到一个字符串中。例如,若二维数组中的数据为: W W W S S S H H H I I I 则字符串中的内容应是 WSHIWSHIWSHI。 注意:部分
14、源程序给出如下。 请勿改动 main()函数和其他函数中的任何内容,仅在函数 proc()的花括号中填入所编写的若干语句。 试题程序: #includestdio.h #define M 4 #define N 3 void proc(char(*s)N,char*b) void main() char a100, wMN=“W“, “W“, “W“, “S“, “S“, “S“, , “H“, “H“, “H“, , “I“, “I“, “I“; int i, j; printf(“The matrix:/n“); for(i=0; iM; i+) for(j=0; jN; j+) prin
15、tf(“%3c“, wij); printf(“/n“); proc(w, a); printf(“The A string:/n“); puts(a); printf(“/n/n“); (分数:30.00)_正确答案:()解析:voidproc(char(*s)N, char*b) int i, j, k=0; for(i=0; iN; i+) /i 表示行下标 for(j=0; jM; j+) /j 表示列下标 bk+=sji; /按列的顺序依次放到一个 字符串中 bk=“/0“; /最后用“/0“作为结束标志 解析 题目中要求将 M 行 N 列的二维数组中的字符数据,按列的顺序依次放到一个字符串中。首先按列取出二维数组中的每一个数据,并将其放入新的字符串中。最后为新的字符串添加结束符。