第16周 用二進位制檔案處理學生成績

2021-07-13 22:50:58 字數 1543 閱讀 3878

**:

/**檔名稱:ycy.cpp;

*作 者:岳成豔 2023年6月24號;

*版 本 號:vc++6.0;

**問題描述:用二進位制檔案處理學生成績。

*程式輸入:略;

*程式輸出:略;

*/#include #include#include#includeusing namespace std;

//(一)定義學生類

class student

; student(int n, string nam, double c, double m, double e):num(n),name(nam),cpp(c),math(m),english(e)

void set_value(int n,string nam, double c, double m, double e);

string get_name()

double get_cpp()

double get_math()

double get_english()

double get_total()

void set_cpp(double c)

void set_math(double m)

void set_english(double e)

void set_total(double t)

friend ostream& operator<<(ostream&, student&);

private:

int num;

string name;

double cpp;

double math;

double english;

double total;

};void student::set_value(int n,string nam, double c, double m, double e)

ostream& operator<<(ostream& out, student& s)

infile.close();

//(三)將所有資料儲存到乙個二進位制檔案binary_score.dat中

ofstream outfile("binary_score.dat",ios::out|ios::binary);

if(!outfile)

{cerr<<"open error!"<>n>>sname>>scpp>>smath>>senglish;

student me(n,sname, scpp, smath, senglish);

outfile.write((char*)&me, sizeof(me));

outfile.close();

//(四)為驗證輸出檔案正確,再將binary_score.dat中的記錄逐一讀出到學生物件中並輸出檢視。

student s;

ifstream infile2("binary_score.dat",ios::in|ios::binary);

if(!infile2)

{cerr<<"open error!"<

用二進位制檔案處理學生成績

輸入 檔名稱 sum123.cpp 作 者 林海雲 完成日期 2015年8月19日 版 本 號 v2.0 問題描述 1 定義學生類,其中包含學號 姓名 c 課 高數和英語成績及 總分資料成員,成員函式根據需要確定。2 讀入學生的成績,並求出總分,用物件陣列進行儲存。ascii檔案score.dat中...

專案 用二進位制檔案處理學生成績

專案 用二進位制檔案處理學生成績 1 定義學生類,其中包含學號 姓名 c 課 高數和英語成績及總分資料成員,成員函式根據需要確定。2 讀入學生的成績,並求出總分,用物件陣列進行儲存。ascii檔案score.dat中儲存的是100名學生的學號 姓名和c 課 高數和英語成績。3 將所有資料儲存到乙個二...

專案 4 用二進位制檔案處理學生成績

問題及 檔名稱 test.cpp 完成日期 2016年6月23日 版本號 v1.0 問題描述 1 定義學生類,其中包含學號 姓名 c 課 高數和英語成績及總分資料成員,成員函式根據需要確定。2 讀入學生的成績,並求出總分,用物件陣列進行儲存。ascii檔案score.dat中儲存的是100名學生的學...