例如:a所指变量s中的学号、姓名、和三门课的成绩依次是:10001、
" ZhangSan "、95、80、88,修改后输出t中的数据应为:10002、"LiSi "、96、
/* 宏为世纪教育 www.greatc.cn */
81、89。
请在程序的下划线处填入正确的内容并把下划线删除, 使程序得出正确的结果。
注意:源程序存放在考生文件夹下BLANK1.C中。
不得增行或删行,也不得更改程序的结构!
给定源程序:
#include
#include
struct student {
long sno;
char name[10];
float score[3];
};
/**********found**********/
__1__ fun(struct student *a)
{int i;
a->sno = 10002;
strcpy(a->name, "LiSi");
/**********found**********/
for (i=0; i<3; i++) __2__ += 1;
/**********found**********/
return __3__ ;
}
main()
{struct student s={10001,"ZhangSan", 95, 80, 88}, *t;
int i;
printf("\n\nThe original data :\n");
printf("\nNo: %ld Name: %s\nScores: ",s.sno, s.name);
for (i=0; i<3; i++) printf("%6.2f ", s.score[i]);
printf("\n");
t = fun(&s);
printf("\nThe data after modified :\n");
printf("\nNo: %ld Name: %s\nScores: ",t->sno, t->name);
for (i=0; i<3; i++) printf("%6.2f ", t->score[i]);
printf("\n");
}
解题答案:
/**********第一空*********/
struct student* fun(struct student *a)
/**********第二空**********/
for (i=0; i<3; i++) a->score[i] += 1;
/**********第三空**********/
return a ;
****************************************** [NextPage] 二、改错题:给定程序MODI1.C中函数fun的功能是:从N个字符串中找出最长的那个串,并将其地址作为函数值返回。各字符串在主函数中输入,并放入一个字符串数组中。
请改正程序中的错误,使它能得出正确结果。
注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。
给定源程序:
#include
#include
#define N 5
#define M 81
/**********found**********/
fun(char (*sq)[M])
{int i; char *sp;
sp=sq[0];
for(i=0;i if(strlen(sp) sp=sq[i] ; /**********found**********/ return sq; } main() {char str[N][M], *longest; int i; printf("Enter %d lines :\n",N); for(i=0; i printf("\nThe N string :\n",N); for(i=0; i longest=fun(str); printf("\nThe longest string :\n"); puts(longest); } 解题答案: /**********found**********/ char *fun(char (*sq)[M]) /**********found**********/ return sp; ****************************************** [NextPage] 三、程序题:函数fun的功能是:将a、b中的两个两位正整数合并形成一个新的整数放在c 中。合并的方式是:将a中的十位和个位数依次放在变量c的百位和个位上,b中的十位和个位数依次放在变量c的十位和千位上。 例如,当a=45,b=12。调用该函数后,c=2415。 注意: 部分源程序存在文件PROG1.C中。数据文件IN.DAT中的数据不得修改。 请勿改动主函数main和其它函数中的任何内容,仅在函数fun的花括号中填入你编写的若干语句。 给定源程序: #include void fun(int a, int b, long *c) { } main() {int a,b; long c; void NONO (); printf("Input a, b:"); scanf("%d%d", &a, &b); fun(a, b, &c); printf("The result is: %ld\n", c); NONO(); } void NONO () {/* 本函数用于打开文件,输入数据,调用函数,输出数据,关闭文件。 */ FILE *rf, *wf ; int i, a,b ; long c ; rf = fopen("in.dat","r"); wf = fopen("out.dat","w"); for(i = 0 ; i < 10 ; i++) { fscanf(rf, "%d,%d", &a, &b); fun(a, b, &c); fprintf(wf, "a=%d,b=%d,c=%ld\n", a, b, c); } fclose(rf); fclose(wf); } 参考答案: void fun(int a, int b, long *c) { *c = (b)*1000+(a/10)*100+(b/10)*10+a; }
| 广告合作:400-664-0084 全国热线:400-664-0084 Copyright 2010 - 2017 www.my8848.com 珠峰网 粤ICP备15066211号 珠峰网 版权所有 All Rights Reserved
|