第14周-專案1-用二進位制檔案處理學生成績
問題及程式碼:
執行結果:
/*
*Copyright (c)2015,煙臺大學計算機與控制工程學院
*All rights reserved.
*檔名稱:File.cpp
*作 者:單昕昕
*完成日期:2015年6月15日
*版 本 號:v1.0
*問題描述:
(1)定義學生類,其中包含學號、姓名、C++課、高數和英語成績及總分資料成員,成員函式根據需要確定。
(2)讀入學生的成績,並求出總分,用物件陣列進行儲存。ASCII檔案score.dat中儲存的是100名學生的學號、姓名和C++課、高數和英語成績。
(3)將所有資料儲存到一個二進位制檔案binary_score.dat中,最後通過鍵盤輸入你的資訊,並寫入到檔案中(我們不謙虛,三科全100分,期末求好運)。
(4)為驗證輸出檔案正確,再將binary_score.dat中的記錄逐一讀出到學生物件中並輸出檢視。
(5)用BinaryViewer命令檢視二進位制檔案檔案
*程式輸入:個人資訊。
*程式輸出:所有人的資訊。
*/
#include <iostream>
#include <cstdio>
#include <cstdlib>//為了使用exit()
#include <fstream>
using namespace std;
//定義學生類
class Student
{
public:
//宣告必要的成員函式
Student() {};
friend istream& operator>>(istream &input, Student &s);
friend ostream& operator<<(ostream &output, Student &s);
private:
string name;
long no; //學號
double cpp;
double math;
double english;
double total;
};
istream& operator>>(istream &input,Student &s)
{
input>>s.name>>s.cpp>>s.math>>s.english;
s.total=s.cpp+s.math+s.english;
return input;
}
ostream &operator<<(ostream &output,Student &s)
{
output<<s.name<<'\t'<<s.cpp<<'\t'<<s.math<<'\t'<<s.english<<'\t'<<s.total;
return output;
}
int main( )
{
Student stud[101],t; //stud[101]為儲存資料的物件陣列,多出來的1是用來儲存我自己的成績的
string sname;
int i;
//從檔案score.dat中讀入資料,儲存到物件陣列中
ifstream infile("score.dat",ios::in);
if(!infile)
{
cout<<"Can’t open the file."<<endl;
abort();
}
ofstream outfile("binary_score.dat",ios::binary);
if(!outfile)
{
cout<<"Can’t open the file."<<endl;
abort();
}
cout<<"請輸入你的資訊:"<<endl;
cin>>stud[100];
for(i=0; i<101; ++i)
outfile.write((char*)&stud[i],sizeof(stud[i]));
infile.close();
outfile.close();
cout<<"The datas have been writen to file. "<<endl;
return 0;
}
執行結果:
二進位制檔案閱讀器。。
知識點總結:
用二進位制檔案處理學生成績。學習心得:
(⊙o⊙)…這個這個。。用閱讀器也看不懂阿!!
怎!麼!破!
相關文章
- 第14周-閱讀專案1-二進位制檔案的讀寫
- 第14周-專案2-二進位制檔案瀏覽器瀏覽器
- 用shell處理二進位制檔案(轉)
- Git處理二進位制檔案Git
- 第14周-閱讀專案4-二進位制檔案和字串流操作的一般方法字串
- 前端怎麼處理二進位制檔案下載前端
- 第14周-閱讀專案2-中文字元以二進位制方式儲存字元
- mysqlbinlog 處理二進位制日誌檔案的工具MySql
- 第15周-閱讀專案1-異常處理&&名稱空間
- 使用 IDA 處理 U-Boot 二進位制流檔案boot
- JAX-WS - 二進位制處理之MTOM(檔案上傳)
- 二進位制檔案複製
- php寫二進位制檔案PHP
- 二進位制檔案拷貝
- C++中的檔案輸入/輸出(5):二進位制檔案的處理 (轉)C++
- 第2周專案1-旱冰場造價
- 二進位制檔案視覺化(二)視覺化
- 二進位制處理技巧
- 檔案操作(二進位制拷貝)
- MySQL二進位制檔案(binlog)MySql
- 文字檔案與二進位制檔案的區別
- [golang] cgo專案如何編譯便攜版二進位制檔案Golang編譯
- Python讀寫二進位制檔案Python
- Java二進位制Class檔案格式解析Java
- c++ 二進位制儲存檔案C++
- C#的二進位制檔案操作C#
- 使用UltraEdit 拷貝二進位制檔案
- 第13周-專案2-用檔案儲存的學生名單
- 第13周-閱讀專案1-標準輸入輸出物件及文字檔案物件
- MySQL 匯出匯入二進位制檔案MySql
- UltraEdit--二進位制檔案編輯功能
- UE複製貼上二進位制檔案
- 二進位制檔案記憶體對映記憶體
- 介面返回二進位制檔案的下載。
- 第13周-專案1-小玩檔案-將文字檔案中的所有行加上行號後寫到新檔案中
- 第15周-專案1-平方根中的異常
- 通過OpenSSL來生成二進位制格式證書檔案(pfx和cer)
- Linux學習之檔案處理命令(二)目錄處理命令 && 檔案處理命令Linux