利用FILE結構對檔案進行操作

2021-05-22 15:54:16 字數 535 閱讀 7363

//利用file結構對檔案進行操作

//輸入若干個學生的資料(包括學號、姓名和成績)

//將資料存放在student.txt檔案中

//從student.txt檔案中讀取所有資料並顯示出來

#include

#include

#include

struct student ;

void main()

file *write,*read;                                          //定義兩個檔案指標,分別用於對檔案的寫和讀

if((write=fopen("student.txt","w"))==null)                  //判斷目標檔案是否成功開啟

for(i=0;i}

fclose(write);

if((read=fopen("student.txt","r"))==null)

cout<<"學號/t姓名/t分數"

對檔案file的操作

對於檔案的知識了解的很少,工作中對於這部分用的還是比較多的,而且用的還是比較深。自己應該好好學習學習這方面的知識。讀取資料 public static string readdate system.out.print sb.tostring file sb.tostring catch fileno...

Python對檔案file的操作

file 操作 my file open file.txt w 在當前目錄中建立檔名為 file.txt 的檔案 my file.write something 向檔案中寫入資料 my file.close 關閉檔案 my file open filename r 唯讀方式開啟 my file.re...

File類 對檔案的操作

void start writealltext寫入檔案,將所有的字串追加到文字中,不會進行另起一行 file.writealltext path,text1 writealllines,將所有的字串追加到文字中,第二個引數為陣列,會根據數值中的每乙個值,另起一行進行寫入 file.writealll...