第十章-习题及答案(共10页)

上传人:20****08 文档编号:62525641 上传时间:2022-03-15 格式:DOC 页数:10 大小:39KB
返回 下载 相关 举报
第十章-习题及答案(共10页)_第1页
第1页 / 共10页
第十章-习题及答案(共10页)_第2页
第2页 / 共10页
第十章-习题及答案(共10页)_第3页
第3页 / 共10页
点击查看更多>>
资源描述
精选优质文档-倾情为你奉上第十章 习题一、选择题1.以下叙述中正确的是_。A)C语言中的文件是流式文件,因此只能顺序存取数据B)打开一个已存在的文件并进行了写操作后,原有文件中的全部数据必定被覆盖C)在一个程序中当对文件进行了写操作后,必须先关闭该文件然后再打开,才能读到第1个数据D)当对文件的读(写)操作完成之后,必须将它关闭,否则可能导致数据丢失2.当已存在一个abc.txt文件时,执行函数fopen (“abc.txt”, “r+”)的功能是 。A)打开abc.txt文件,清除原有的内容B)打开abc.txt文件,只能写入新的内容C)打开abc.txt文件,只能读取原有内容D)打开abc.txt文件,可以读取和写入新的内容3.若fp是指向某文件的指针,且已读到此文件末尾,则库函数feof(fp)的返回值是 。A) EOF B) 0 C) 非零值 D) NULL4.以下程序企图把从终端输入的字符输出到名为abc.txt的文件中,直到从终端读入字符#号时结束输入和输出操作,但程序有错。#include main() FILE *fout; char ch;fout=fopen(abc.txt,w);ch=fgetc(stdin);while(ch!=#) fputc(ch,fout);ch =fgetc(stdin);fclose(fout);出错的原因是 。A) 函数fopen调用形式有误 B) 输入文件没有关闭 C) 函数fgetc调用形式有误 D) 文件指针stdin没有定义5.有以下程序 #include main() FILE *pf;char *s1=China,*s2=Beijing;pf=fopen(abc.dat,wb+);fwrite(s2,7,1,pf);rewind(pf);fwrite(s1,5,1,pf);fclose(pf);以下程序执行后abc.dat文件的内容是A)China B)Chinang C)ChinaBeijing D)BeijingChina6有以下程序#include main ()FILE *fp; int i,a6=1,2,3,4,5,6; fp=fopen(“d3.dat”,”w+b”);fwrite(a,sizeof(int),6,fp);fseek(fp,sizeof(int)*3,SEEK_SET); fread(a,sizeof(int),3,fp); fclose(fp);for(i=0;i6;i+) printf(“%d,”,ai);程序运行后的输出结果是( )A)4,5,6,4,5,6, B)1,2,3,4,5,6, C)4,5,6,1,2,3, D)6,5,4,3,2,1,7.有以下程序 #include main() FILE *fp; int a10=1,2,3,i,n; fp=fopen(“dl.dat”,”w”); for(i=0;i3;i+) fprintf(fp,”%d”,ai); fprintf(fp,”n”); fclose(fp); fp=fopen(“dl.dat”,”r”); fscanf(fp,”%d”,&n); fclose(fp); printf(“%dn”,n); 程序的运行结果是 A)12300 B) 123 C) 1 D) 3218.设有以下结构体类型:struct st char name8; int num; float s4; student 20;并且结构体数组student中的元素都已经有值,若要将这些元素写到fp所指向的磁盘文件中,以下不正确的形式是()。A)fwrite (student , sizeof(struct st ),20 , fp);B)fwrite (student ,20* sizeof(struct st ),1, fp);C)fwrite (student , 10*sizeof(struct st ),10 , fp);D)for (i=0;i=a&stri=z) stri=_(2)_; fputc(stri,fp); i+; fclose(fp); fp=fopen(test.txt,_(3)_); fgets(str,100,fp); printf(%sn,str); fclose(fp);4.下面程序用变量count统计文件中字符的个数。请填空。# include main( ) FILE *fp; long count=0; if(fp=fopen(“letter.dat”, (1) )= =NULL) printf(“cannot open filen”); exit(0); while(!feof(fp) (2) ; (3) ; printf(“count=%ldn”, count); fclose(fp); 5.以下程序的功能是将文件file1.c的内容输出到屏幕上并复制到文件file2.c中。请填空。 # include main( ) FILE (1) ; fp1= fopen(“file1.c”, ”r”); fp2= fopen(“file2.c”, ”w”); while(!feof(fp1) putchar(getc(fp1); (2) while(!feof(fp1) putc( (3) ); fclose(fp1); fclose(fp2); 6.以下程序段打开文件后,先利用 fseek函数将文件位置指针定位在文件末尾,然后调用ftell函数返回当前文件位置指针的具体位置,从而确定文件长度,请填空。FILE *myf; long f1;myf= fopen(“test.t”,“rb”); ;f1=ftell(myf);fclose(myf);printf(“%dn”,f1); 三、编程题1. 编写一个程序,建立一个abc文本文件,向其中写入“this is a test”字符串,然后显示该文件的内容。2. 有5个学生,每个学生有3门课的成绩,从键盘输入以上数据(包括学生号、姓名、三门课成绩),计算出平均成绩,将原有数据和计算出的平均分数存放在磁盘文件stud中。3. 将上题stud文件中的学生数据按平均分进行排序处理,并将已排序的学生数据存入一个新文件stu-sort中。4. 将上题以排序的学生成绩文件进行插入处理。插入一个学生的3门课成绩,程序先计算新插入学生的平均成绩,然后将它按平均成绩高低顺序插入,插入后建立一个新文件。第十章 习题及答案一、选择题1-8 D D A A B A B C二、填空题1.文本文件、二进制文件 2. 字节 流式3. (1)w或w+或wt或w+t或wt+(2) stri-32(3)r或r+或r+t或rt+4. (1) r (2)fgetc(fp) (3) count+5. (1)*fp1,*fp2 (2)rewind(fp1);(3)getc(fp1),fp26. fseek(myf,0,SEEK_END)三、编程题1. 编写一个程序,建立一个abc文本文件,向其中写入“this is a test”字符串,然后显示该文件的内容。#include #include #includemain( )FILE *fp; char msg = this is a test; char buf20; if(fp=fopen(abc,w+)=NULL) printf(不能建立abc文件n); exit(0); fwrite(msg,strlen(msg)+1,1,fp);fseek(fp,SEEK_SET,0);fread(buf,strlen(msg)+1,1,fp);printf(%sn,buf);fclose(fp);2.有5个学生,每个学生有3门课的成绩,从键盘输入以上数据(包括学生号、姓名、三门课成绩),计算出平均成绩,将原有数据和计算出的平均分数存放在磁盘文件stud中。 #include struct student char num10; char name8; int score3; float ave; stu5; main() int i,j,sum; FILE *fp; for(i=0;i5;i+) printf(n input score of student%d:n,i+1); printf(NO.:); scanf(%s,stui.num); printf(name:); scanf(%s,stui.name); sum=0; for(j=0;j3;j+) printf(score %d :,j+1); scanf(%d,&stui.scorej); sum+=stui.scorej; stui.ave=sum/3.0; fp=fopen(stud,w); for(i=0;i5;i+) if(fwrite(&stui,sizeof(struct student),1,fp)!=1) printf(File write errorn); fclose(fp); fp=fopen(stud,r); for(i=0;i5;i+) fread(&stui,sizeof(struct student),1,fp); printf(%s,%s,%d,%d,%d,%6.2fn,stui.num,stui.name,stui.score0, stui.score1, stui.score2 ,stui.ave); 3.将上题stud文件中的学生数据按平均分进行排序处理,并将已排序的学生数据存入一个新文件stu-sort中。 #include #include#define N 10 struct student char num10; char name8; int score3; float ave; stN,temp; main() FILE *fp; int i,j,n; if(fp=fopen(stud,r)=NULL) printf(can not open the file); exit(0); printf(n file stud:); for(i=0;fread(&sti,sizeof(struct student),1,fp)!=0;i+) printf(n%8s%8s,sti.num,sti.name); for(j=0;j3;j+) printf(%8d,sti.scorej); printf(%10.f,sti.ave); fclose(fp); n=i; for(i=0;in;i+) for(j=i+1;jn;j+) if(sti.avestj.ave) temp=sti; sti=stj; stj=temp; printf(nnow:); fp=fopen(stu-sort,w); for(i=0;in;i+) fwrite(&sti,sizeof(struct student),1,fp); printf(n%8s%8s,sti.num,sti.name); for(j=0;j3;j+) printf(%8d,sti.scorej); printf(%10.2f,sti.ave); fclose(fp); 4.将上题以排序的学生成绩文件进行插入处理。插入一个学生的3门课成绩,程序先计算新插入学生的平均成绩,然后将它按平均成绩高低顺序插入,插入后建立一个新文件。 #include #includestruct student char num10; char name8; int score3; float ave; st10,s; main() FILE *fp, * fp1; int i,j,t,n; printf(n NO.:); scanf(%s,s.num); printf(name:); scanf(%s,s.name); printf(score1,score2,score3:); scanf(%d,%d,%d,&s.score0, &s.score1, &s.score2); s.ave=(s.score0+s.score1+s.score2)/3.0; if(fp=fopen(stu_sort,r)=NULL) printf(can not open file.); exit(0); printf(original data:n); for(i=0;fread(&sti,sizeof(struct student),1,fp)!=0;i+) printf(n%8s%8s,sti.num,sti.name); for(j=0;js.ave&tn;t+); printf(nnow:n); fp1=fopen(sort1.dat,w); for(i=0;it;i+) fwrite(&sti,sizeof(struct student),1,fp1); printf(n%8s%8s,sti.num,sti.name); for(j=0;j3;j+) printf(%8d,sti.scorej); printf(%10.2f,sti.ave); fwrite(&s,sizeof(struct student),1,fp1); printf(n%8s%7s%7d%7d%7d%10.2f,s.num,s.name,s.score0,s.score1,s.score2,s.ave); for(i=t;in;i+) fwrite(&sti,sizeof(struct student),1,fp1); printf(n %8s%8s,sti.num,sti.name); for(j=0;j3;j+) printf(%8d,sti.scorej); printf(10.2f,sti.ave); fclose(fp); fclose(fp1); 专心-专注-专业
展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 办公文档 > 教学培训


copyright@ 2023-2025  zhuangpeitu.com 装配图网版权所有   联系电话:18123376007

备案号:ICP2024067431-1 川公网安备51140202000466号


本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知装配图网,我们立即给予删除!