正在加载图片...
宏为世纪教育www.great4月上机考试题库填空是 使程序得出正确的结果 10004," FangFang",90,82,8 注意:源程序存放在考生文件夹下的 BLANKl.C中 10005," ZhangSan",95,80,88},ssN] 不得增行或删行,也不得更改程序的结构! FILE·fp #include <stdio. h> fp= fopen("student. dat","wb #include <string h> # include <ctype.h> iclose(fp) int fun( char *s) printf("nThe original data: n"); char *Ip,’p fp= fopen("student. dat","rb"); /**布率事布 found事事事事*/ fread(ss, sizeof(STU), N, fp); while(( toupper(IpF=toupper(rp))&&(lp<rp))i i printf("nNo: %ld Name: %-8s 率率布布率率布 found*春枣亭事率事摩率 ss[. sno, ss0 name); for(F0; K<3: 1++)printf("%6.2f", ss0. score[]); printf("\n") if(lp<rp) 3 else return I fun("student. dat", 10003); fp= fopen("student. dat", "rb") maino ead( ss, sizeof(STU), N, fp); f char s[81; iclose(fp); printf("Enter a string: ) scanf("%s printf("unThe data after modifing \n"); if(fun(s) printf("n"%s\"is a Palindrome. nin"s); for(=0,j<N;++) else printf("\n"%s"isnt a Palindrome. \nin"S); i printf("unNo: %ld Name: %-8s ,ss0 sno, sson for(=0,3;,计++) printf("%6.2f",sbi] score回 2、程序通过定义学生结构体变量存储了学生的学号 printi("n") 名和3门课的成绩。所有学生数据均以二进制方式输出到} student dat文件中。函数fun的功能是从指定文件中找出指} 定学号的学生数据,读入此学生数据,对该生的分数进行修 改,使每门课的分数加3分,修改后重写文件中该学生的数23、程序通过定义学生结构体变量,存储了学生的学号、姓 据,即用该学生的新数据覆盖原数据,其它学生数据不变:名和3门课的成绩。函数fun的功能是对形参b所指结构体 若找不到,则什么都不做 变量中的数据进行修改,最后在主函数中输出修改后的数 请在程序的下划线处填入正确的内容并把下划线删除,据 使程序得出正确的结果 例如:b所指变量t中的学号、姓名、和三门课的成绩依 注意:源程序存放在考生文件夹下的 BLANKI.C中 次是:10002、 Zhang"、93、85、87,修改后输出t中的 不得增行或删行,也不得更改程序的结构! 数据应为:10004、" LiJie"、93、85、87 #include <stdio. h> 请在程序的下划线处填入正确的内容并把下划线删除 #define n 5 使程序得出正确的结果 typedef struct student 注意:源程序存放在考生文件夹下的 BLANKLC中。 不得增行或删行,也不得更改程序的结构! char name[ 10]; #include <stdio. h> float score3]; #include <string. h A STU struct student i void fun( char *filename, long sno) long sno, STU n float score3]: 率*布事率布布 found布事率率布事率*/ void fun( struct student *b) while(feof(I)) f in i fread( &n, sizeof(STU), 1, fp); /率春率率布摩 found*事率率事**/ if(nsno 2 sno) if (I feof(fp)) for(F=0;κ<3;计++)n. score[+=3 /**布事率率布foun i struct student t( 10002, "Zhang Q1,93, 85,; 3, -1(long)sizeof(STU), SEEK CUR); fwrite( &n, sizeof(STU), 1, fp); printf("nln The original data n"); printf("nNo: %ld Name: %snScores: " tsno, tname); fclose(fp) for(F0; K <3: 1++) printi(%6.2f",t. D: STU tIN}={{10001, Macha",91,92,77} fun(3_), {10002," Caokai",75,60,88} printf("nThe data after modified: n"); 10003,"Ls, printf("\nNo: %ld Name: %slnScores: ", tsno, tname);宏为世纪教育 www.greatc.cn 4 月上机考试题库 填空题 7 使程序得出正确的结果。 注意:源程序存放在考生文件夹下的 BLANK1.C 中。 不得增行或删行,也不得更改程序的结构! #include <stdio.h> #include <string.h> #include <ctype.h> int fun(char *s) { char *lp,*rp; /**********found**********/ lp= __1__ ; rp=s+strlen(s)-1; while((toupper(*lp)==toupper(*rp)) && (lp<rp) ) { /**********found**********/ lp++; rp __2__ ; } /**********found**********/ if(lp<rp) __3__ ; else return 1; } main() { char s[81]; printf("Enter a string: "); scanf("%s",s); if(fun(s)) printf("\n\"%s\" is a Palindrome.\n\n",s); else printf("\n\"%s\" isn't a Palindrome.\n\n",s); } 22、程序通过定义学生结构体变量,存储了学生的学号、姓 名和 3 门课的成绩。所有学生数据均以二进制方式输出到 student.dat 文件中。函数 fun 的功能是从指定文件中找出指 定学号的学生数据,读入此学生数据,对该生的分数进行修 改,使每门课的分数加 3 分,修改后重写文件中该学生的数 据,即用该学生的新数据覆盖原数据,其它学生数据不变; 若找不到,则什么都不做。 请在程序的下划线处填入正确的内容并把下划线删除, 使程序得出正确的结果。 注意:源程序存放在考生文件夹下的 BLANK1.C 中。 不得增行或删行,也不得更改程序的结构! #include <stdio.h> #define N 5 typedef struct student { long sno; char name[10]; float score[3]; } STU; void fun(char *filename, long sno) { FILE *fp; STU n; int i; fp = fopen(filename,"rb+"); /**********found**********/ while (!feof(__1__)) { fread(&n, sizeof(STU), 1, fp); /**********found**********/ if (n.sno__2__sno) break; } if (!feof(fp)) { for (i=0; i<3; i++) n.score[i] += 3; /**********found**********/ fseek(__3__, -1(long)*sizeof(STU), SEEK_CUR); fwrite(&n, sizeof(STU), 1, fp); } fclose(fp); } main() { STU t[N]={ {10001,"MaChao", 91, 92, 77}, {10002,"CaoKai", 75, 60, 88}, {10003,"LiSi", 85, 70, 78}, {10004,"FangFang", 90, 82, 87}, {10005,"ZhangSan", 95, 80, 88}}, ss[N]; int i,j; FILE *fp; fp = fopen("student.dat", "wb"); fwrite(t, sizeof(STU), N, fp); fclose(fp); printf("\nThe original data :\n"); fp = fopen("student.dat", "rb"); fread(ss, sizeof(STU), N, fp); fclose(fp); for (j=0; j<N; j++) { printf("\nNo: %ld Name: %-8s Scores: ",ss[j].sno, ss[j].name); for (i=0; i<3; i++) printf("%6.2f ", ss[j].score[i]); printf("\n"); } fun("student.dat", 10003); fp = fopen("student.dat", "rb"); fread(ss, sizeof(STU), N, fp); fclose(fp); printf("\nThe data after modifing :\n"); for (j=0; j<N; j++) { printf("\nNo: %ld Name: %-8s Scores: ",ss[j].sno, ss[j].name); for (i=0; i<3; i++) printf("%6.2f ", ss[j].score[i]); printf("\n"); } } 23、程序通过定义学生结构体变量,存储了学生的学号、姓 名和 3 门课的成绩。函数 fun 的功能是对形参 b 所指结构体 变量中的数据进行修改,最后在主函数中输出修改后的数 据。 例如: b 所指变量 t 中的学号、姓名、和三门课的成绩依 次是: 10002、"ZhangQi"、93、85、87,修改后输出 t 中的 数据应为:10004、" LiJie "、93、85、87。 请在程序的下划线处填入正确的内容并把下划线删除, 使程序得出正确的结果。 注意:源程序存放在考生文件夹下的 BLANK1.C 中。 不得增行或删行,也不得更改程序的结构! #include <stdio.h> #include <string.h> struct student { long sno; char name[10]; float score[3]; }; void fun( struct student *b) { int i; /**********found**********/ b__1__ = 10004; /**********found**********/ strcpy(b__2__, "LiJie"); } main() { struct student t={10002,"ZhangQi", 93, 85, 87}; int i; printf("\n\nThe original data :\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"); /**********found**********/ fun(__3__); printf("\nThe data after modified :\n"); printf("\nNo: %ld Name: %s\nScores: ",t.sno, t.name);
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有