第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

關(guān)于C語(yǔ)言里面文件的寫(xiě)入和讀出問(wèn)題

關(guān)于C語(yǔ)言里面文件的寫(xiě)入和讀出問(wèn)題

C
Camel97 2016-01-27 13:07:22
/*運(yùn)行程序按1可以創(chuàng)建并且在一個(gè)文本文件里寫(xiě)入保存數(shù)據(jù),再重新運(yùn)行,按3,無(wú)法讀出,而且原文本文件的內(nèi)容都空了*/#include<stdio.h>#include<stdlib.h>#include<math.h>#define N 100struct product{ int num; ? ? ? ? ? ? ? ? ? ? ? //設(shè)備編號(hào) char type[20]; ? ? ? ? ? ? //設(shè)備類(lèi) 型};FILE *fp;void input(struct product *p);void scan(struct product *p);?int system(const char *string);int main(){ struct product pro[N]; int i; int number=0; if((fp=fopen("test1.txt","wt"))==NULL) { printf("不能打開(kāi)文件.\n"); exit(1); } fwrite(&number,sizeof(int),1,fp); fclose(fp); printf("* 1.添加新設(shè)備 ? ? ? ? ? ? ? ? ? ? ? ?3.瀏覽設(shè)備信息 ? ? ? ? ?*\n"); printf("請(qǐng)用數(shù)字選擇你需要的功能:"); scanf("%d",&i); system("cls"); ? ? ? ? ? ? ? ? ?//清屏操作 switch(i) { case 1: input(pro); break; case 3: scan(pro); break; } return 0;}void input(struct product *p) ? ? ? ? ? ? ? //寫(xiě)入{ char str[20]; int n; if((fp=fopen("test1.txt","wt+"))==NULL) { printf("不能打開(kāi)文件.\n"); exit(1); } rewind(fp); fread(&n,sizeof(int),1,fp); n++; rewind(fp); fwrite(&n,sizeof(int),1,fp); fclose(fp); if((fp=fopen("test1.txt","at+"))==NULL) { printf("不能打開(kāi)文件.\n"); exit(1); } printf("輸入設(shè)備編號(hào):"); scanf("%s",str); p->num=atoi(str); fwrite(&(p->num),sizeof(int),1,fp); printf("輸入設(shè)備類(lèi)型:"); scanf("%s",p->type); fwrite(p->type,sizeof(char),1,fp); fclose(fp);}void scan(struct product *p) ? ? ? ? ? ? ? //瀏覽 讀出{ int i,n; int num; char type[20]; if((fp=fopen("test1.txt","rt"))==NULL) { printf("error on delete!"); exit (1); } rewind(fp); fread(&n,sizeof(int),1,fp); for(i=0;i<n;i++) { fread(&num,sizeof(int),1,fp); fread(type,sizeof(char),1,fp); printf("%d ? ?%s ? \n",num,type); } fclose(fp);}
查看完整描述

1 回答

?
慕少1414285

TA貢獻(xiàn)4條經(jīng)驗(yàn) 獲得超0個(gè)贊

這個(gè)可以讀出

char ch;

ch=fgetc(fp);

? ? while(ch!=EOF)

{

? ? ? ? putchar(ch);

? ? ? ? ch=fgetc(fp);

? ? }


查看完整回答
反對(duì) 回復(fù) 2016-02-21
  • 1 回答
  • 0 關(guān)注
  • 1834 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)