歡迎來到裝配圖網(wǎng)! | 幫助中心 裝配圖網(wǎng)zhuangpeitu.com!
裝配圖網(wǎng)
ImageVerifierCode 換一換
首頁 裝配圖網(wǎng) > 資源分類 > DOC文檔下載  

第十章-習(xí)題及答案(共10頁)

  • 資源ID:62525641       資源大小:39KB        全文頁數(shù):10頁
  • 資源格式: DOC        下載積分:20積分
快捷下載 游客一鍵下載
會(huì)員登錄下載
微信登錄下載
三方登錄下載: 微信開放平臺(tái)登錄 支付寶登錄   QQ登錄   微博登錄  
二維碼
微信掃一掃登錄
下載資源需要20積分
郵箱/手機(jī):
溫馨提示:
用戶名和密碼都是您填寫的郵箱或者手機(jī)號(hào),方便查詢和重復(fù)下載(系統(tǒng)自動(dòng)生成)
支付方式: 支付寶    微信支付   
驗(yàn)證碼:   換一換

 
賬號(hào):
密碼:
驗(yàn)證碼:   換一換
  忘記密碼?
    
友情提示
2、PDF文件下載后,可能會(huì)被瀏覽器默認(rèn)打開,此種情況可以點(diǎn)擊瀏覽器菜單,保存網(wǎng)頁到桌面,就可以正常下載了。
3、本站不支持迅雷下載,請(qǐng)使用電腦自帶的IE瀏覽器,或者360瀏覽器、谷歌瀏覽器下載即可。
4、本站資源下載后的文檔和圖紙-無水印,預(yù)覽文檔經(jīng)過壓縮,下載后原文更清晰。
5、試題試卷類文檔,如果標(biāo)題沒有明確說明有答案則都視為沒有答案,請(qǐng)知曉。

第十章-習(xí)題及答案(共10頁)

精選優(yōu)質(zhì)文檔-傾情為你奉上第十章 習(xí)題一、選擇題1.以下敘述中正確的是_。A)C語言中的文件是流式文件,因此只能順序存取數(shù)據(jù)B)打開一個(gè)已存在的文件并進(jìn)行了寫操作后,原有文件中的全部數(shù)據(jù)必定被覆蓋C)在一個(gè)程序中當(dāng)對(duì)文件進(jìn)行了寫操作后,必須先關(guān)閉該文件然后再打開,才能讀到第1個(gè)數(shù)據(jù)D)當(dāng)對(duì)文件的讀(寫)操作完成之后,必須將它關(guān)閉,否則可能導(dǎo)致數(shù)據(jù)丟失2.當(dāng)已存在一個(gè)abc.txt文件時(shí),執(zhí)行函數(shù)fopen (“abc.txt”, “r+”)的功能是 。A)打開abc.txt文件,清除原有的內(nèi)容B)打開abc.txt文件,只能寫入新的內(nèi)容C)打開abc.txt文件,只能讀取原有內(nèi)容D)打開abc.txt文件,可以讀取和寫入新的內(nèi)容3.若fp是指向某文件的指針,且已讀到此文件末尾,則庫函數(shù)feof(fp)的返回值是 。A) EOF B) 0 C) 非零值 D) NULL4.以下程序企圖把從終端輸入的字符輸出到名為abc.txt的文件中,直到從終端讀入字符#號(hào)時(shí)結(jié)束輸入和輸出操作,但程序有錯(cuò)。#include <stdio.h>main() FILE *fout; char ch;fout=fopen('abc.txt','w');ch=fgetc(stdin);while(ch!='#') fputc(ch,fout);ch =fgetc(stdin);fclose(fout);出錯(cuò)的原因是 。A) 函數(shù)fopen調(diào)用形式有誤 B) 輸入文件沒有關(guān)閉 C) 函數(shù)fgetc調(diào)用形式有誤 D) 文件指針stdin沒有定義5.有以下程序 #include <stdio.h>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);以下程序執(zhí)行后abc.dat文件的內(nèi)容是A)China B)Chinang C)ChinaBeijing D)BeijingChina6有以下程序#include <stdio.h>    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;i<6;i+) printf(“%d,”,ai);    程序運(yùn)行后的輸出結(jié)果是( )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 <stdio.h> main() FILE *fp; int a10=1,2,3,i,n; fp=fopen(“dl.dat”,”w”); for(i=0;i<3;i+) fprintf(fp,”%d”,ai); fprintf(fp,”n”); fclose(fp); fp=fopen(“dl.dat”,”r”); fscanf(fp,”%d”,&n); fclose(fp); printf(“%dn”,n); 程序的運(yùn)行結(jié)果是 A)12300 B) 123 C) 1 D) 3218.設(shè)有以下結(jié)構(gòu)體類型:struct st char name8; int num; float s4; student 20;并且結(jié)構(gòu)體數(shù)組student中的元素都已經(jīng)有值,若要將這些元素寫到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<20;i+)fwrite (student+i , sizeof(struct st ),1 , fp);二、填空題1.C語言中根據(jù)數(shù)據(jù)的組織形式,把文件分為 和 兩種。2.在C語言中,文件的存取是以 為單位的,這種文件被稱作 文件。3.以下程序的功能是:從鍵盤上輸入一個(gè)字符串, 把該字符串中的小寫字母轉(zhuǎn)換為大寫字母,輸出到文件test.txt中,然后從該文件讀出字符串并顯示出來。請(qǐng)?zhí)羁铡?#include main() FILE *fp; char str100; int i=0; if(fp=fopen("text.txt",_(1)_)=NULL) printf("can't open this file.n");exit(0); printf("input astring:n"); gets(str); while (stri) if(stri>='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統(tǒng)計(jì)文件中字符的個(gè)數(shù)。請(qǐng)?zhí)羁铡? include <stdio.h> main( ) FILE *fp; long count=0; if(fp=fopen(“l(fā)etter.dat”, (1) )= =NULL) printf(“cannot open filen”); exit(0); while(!feof(fp) (2) ; (3) ; printf(“count=%ldn”, count); fclose(fp); 5.以下程序的功能是將文件file1.c的內(nèi)容輸出到屏幕上并復(fù)制到文件file2.c中。請(qǐng)?zhí)羁铡?# include <stdio.h> 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函數(shù)將文件位置指針定位在文件末尾,然后調(diào)用ftell函數(shù)返回當(dāng)前文件位置指針的具體位置,從而確定文件長(zhǎng)度,請(qǐng)?zhí)羁铡ILE *myf; long f1;myf= fopen(“test.t”,“rb”); ;f1=ftell(myf);fclose(myf);printf(“%dn”,f1); 三、編程題1. 編寫一個(gè)程序,建立一個(gè)abc文本文件,向其中寫入“this is a test”字符串,然后顯示該文件的內(nèi)容。2. 有5個(gè)學(xué)生,每個(gè)學(xué)生有3門課的成績(jī),從鍵盤輸入以上數(shù)據(jù)(包括學(xué)生號(hào)、姓名、三門課成績(jī)),計(jì)算出平均成績(jī),將原有數(shù)據(jù)和計(jì)算出的平均分?jǐn)?shù)存放在磁盤文件stud中。3. 將上題stud文件中的學(xué)生數(shù)據(jù)按平均分進(jìn)行排序處理,并將已排序的學(xué)生數(shù)據(jù)存入一個(gè)新文件stu-sort中。4. 將上題以排序的學(xué)生成績(jī)文件進(jìn)行插入處理。插入一個(gè)學(xué)生的3門課成績(jī),程序先計(jì)算新插入學(xué)生的平均成績(jī),然后將它按平均成績(jī)高低順序插入,插入后建立一個(gè)新文件。第十章 習(xí)題及答案一、選擇題1-8 D D A A B A B C二、填空題1.文本文件、二進(jìn)制文件 2. 字節(jié) 流式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. 編寫一個(gè)程序,建立一個(gè)abc文本文件,向其中寫入“this is a test”字符串,然后顯示該文件的內(nèi)容。#include <stdio.h>#include <string.h>#include<stdlib.h>main( )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個(gè)學(xué)生,每個(gè)學(xué)生有3門課的成績(jī),從鍵盤輸入以上數(shù)據(jù)(包括學(xué)生號(hào)、姓名、三門課成績(jī)),計(jì)算出平均成績(jī),將原有數(shù)據(jù)和計(jì)算出的平均分?jǐn)?shù)存放在磁盤文件stud中。 #include<stdio.h> struct student char num10; char name8; int score3; float ave; stu5; main() int i,j,sum; FILE *fp; for(i=0;i<5;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;j<3;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;i<5;i+) if(fwrite(&stui,sizeof(struct student),1,fp)!=1) printf("File write errorn"); fclose(fp); fp=fopen("stud","r"); for(i=0;i<5;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文件中的學(xué)生數(shù)據(jù)按平均分進(jìn)行排序處理,并將已排序的學(xué)生數(shù)據(jù)存入一個(gè)新文件stu-sort中。 #include <stdio.h> #include<stdlib.h>#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;j<3;j+) printf("%8d",sti.scorej); printf("%10.f",sti.ave); fclose(fp); n=i; for(i=0;i<n;i+) for(j=i+1;j<n;j+) if(sti.ave<stj.ave) temp=sti; sti=stj; stj=temp; printf("nnow:"); fp=fopen("stu-sort","w"); for(i=0;i<n;i+) fwrite(&sti,sizeof(struct student),1,fp); printf("n%8s%8s",sti.num,sti.name); for(j=0;j<3;j+) printf("%8d",sti.scorej); printf("%10.2f",sti.ave); fclose(fp); 4.將上題以排序的學(xué)生成績(jī)文件進(jìn)行插入處理。插入一個(gè)學(xué)生的3門課成績(jī),程序先計(jì)算新插入學(xué)生的平均成績(jī),然后將它按平均成績(jī)高低順序插入,插入后建立一個(gè)新文件。 #include <stdio.h> #include<stdlib.h>struct 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;j<3;j+) printf("%8d",sti.scorej); printf("%10.2f",sti.ave); n=i; for(t=0;stt.ave>s.ave&&t<n;t+); printf("nnow:n"); fp1=fopen("sort1.dat","w"); for(i=0;i<t;i+) fwrite(&sti,sizeof(struct student),1,fp1); printf("n%8s%8s",sti.num,sti.name); for(j=0;j<3;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;i<n;i+) fwrite(&sti,sizeof(struct student),1,fp1); printf("n %8s%8s",sti.num,sti.name); for(j=0;j<3;j+) printf("%8d",sti.scorej); printf("10.2f",sti.ave); fclose(fp); fclose(fp1); 專心-專注-專業(yè)

注意事項(xiàng)

本文(第十章-習(xí)題及答案(共10頁))為本站會(huì)員(20****08)主動(dòng)上傳,裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)上載內(nèi)容本身不做任何修改或編輯。 若此文所含內(nèi)容侵犯了您的版權(quán)或隱私,請(qǐng)立即通知裝配圖網(wǎng)(點(diǎn)擊聯(lián)系客服),我們立即給予刪除!

溫馨提示:如果因?yàn)榫W(wǎng)速或其他原因下載失敗請(qǐng)重新下載,重復(fù)下載不扣分。




關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007

備案號(hào):ICP2024067431號(hào)-1 川公網(wǎng)安備51140202000466號(hào)


本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺(tái),本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請(qǐng)立即通知裝配圖網(wǎng),我們立即給予刪除!