當前位置:成語大全網 - 漢語詞典 - 用c語言寫文件讀寫。

用c語言寫文件讀寫。

第壹種:

#包含?& ltstdio.h & gt

#包含?& ltstring.h & gt

#包含?& ltstdlib.h & gt

struct?學生?//結構

{

夏爾?名稱[20];//名稱

int?英語;?//英語

int?數學;?//數學?

int?程序;//編程

} s[50];

作廢?道如(struct?學生?s[],?int*?n)?//文件導入功能

{

文件?* p;

int?I = * n;

if((p=fopen("students.txt "," r"))==NULL)

{

Printf("無法打開該文件!");

}

其他

{

而(!feof(p)

{

fscanf(p,?" %s%d%d%d ",s[i]。姓名,?& amps[i]。英語,?& amps[i]。數學,?& amps[i]。程序);

i++;

* n = * n+1;

}

}

fclose(p);

}

作廢?派旭(struct?學生?s[],?int?n)?//排序功能

{

int?我,?j;

struct?學生?斯圖;

int?all score[2];

為了什麽?(I = 0;?我& ltn-1;?i++)

{

為了什麽?(j = I+1;?j & ltn;?j++)

{

allscore[0]=s[i]。英語+s[i]。數學+s[i]。程序;

allscore[1]=s[j]。英語+s[j]。數學+s[j]。程序;

如果?(all score[0]& lt;allscore[1])

{

stu = s[I];

s[I]= s[j];

s[j]= stu;

}

}

}

}

作廢?尹達(結構?學生?s[],?int?N)//顯示所有信息

{

int?我;

printf(" \ n name \ t English \ t math \ t編程\ t總分\ n ");

為了什麽?(I = 0;?我& ltn;?i++)

{

printf(" % s \ t % d \ t % d \ t % d \ t % d \ t % d \ n ",s[i]。姓名,?s[i]。英語,?s[i]。數學,?s[i]。程序,?(s[i]。英語+s[i]。數學+s[i]。程序));

}

}

int?Main()//主函數

{

int?k,?n = 0;

道儒(s,?& ampn);

排須(s,n);

尹達(s,n);

回歸?0;

}輸出結果:

第二個二進制導入也差不多,這裏就不寫了。