【專案-用二進位制檔案處理學生成績】
(1)定義學生類,其中包含學號、姓名、c++課、高數和英語成績及總分資料成員,成員函式根據需要確定。
(2)讀入學生的成績,並求出總分,用物件陣列進行儲存。ascii檔案score.dat中儲存的是100名學生的學號、姓名和c++課、高數和英語成績。
(3)將所有資料儲存到乙個二進位制檔案binary_score.dat中,最後通過鍵盤輸入你的資訊,並寫入到檔案中(咱不謙虛,三科全100分,期末求好運)。
(4)為驗證輸出檔案正確,再將binary_score.dat中的記錄逐一讀出到學生物件中並輸出檢視。
(5)用binaryviewer命令檢視二進位制檔案檔案
#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();
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();
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中...
專案 4 用二進位制檔案處理學生成績
問題及 檔名稱 test.cpp 完成日期 2016年6月23日 版本號 v1.0 問題描述 1 定義學生類,其中包含學號 姓名 c 課 高數和英語成績及總分資料成員,成員函式根據需要確定。2 讀入學生的成績,並求出總分,用物件陣列進行儲存。ascii檔案score.dat中儲存的是100名學生的學...
第16周 用二進位制檔案處理學生成績
檔名稱 ycy.cpp 作 者 岳成豔 2016年6月24號 版 本 號 vc 6.0 問題描述 用二進位制檔案處理學生成績。程式輸入 略 程式輸出 略 include include include includeusing namespace std 一 定義學生類 class student ...