問題及**:
#include #include using namespace std;
int main()
{ fstream outfile,infile; //定義檔案流物件
outfile.open("data.dat",ios::out); //以輸出方式開啟檔案 data,dat
outfile<
執行結果:
執行後,在程式資料夾裡生成了乙個data.dat 檔案
以記事本方式開啟檔案,看到結果正是輸入結果
執行結果,看到一共輸出了五行,而在data.dat檔案裡只有四行,那是因為在data.dat檔案的最後一行有乙個回車符
知識點總結:
在運用檔案流的時候,首先標頭檔案 #include
然後定義乙個物件
ios::in 以輸入方式大開檔案
ios::out 以輸出方式開啟檔案,如果已有此名字的檔案,則將其原內容刪除
infile.getline(line,sizeof(line)); 獲得每行的資料
第十四周 閱讀程式 1
問題及 檔名稱 project.cpp 作 者 chenqin.完成日期 2015年6月5日 版 本 號 v1.0 問題描述 1.閱讀並執行下面的示例程式,掌握標準輸入輸出流的控制 程式輸入 略 程式輸出 略 include include using namespace std int main ...
第十四周 閱讀程式 1
檔名稱 text.cpp 完成日期 2016年5月30日 版本號 vc 6.0 問題描述 閱讀下面程式,並寫出執行結果 include include includeusing namespace std int main vectorivec int i for i 0 i 5 i ivec.pu...
第十四周閱讀程式(2)
問題及 include include using namespace std int main vectorintlist vector iterator listit int i intlist.push back 1 intlist.push back 5 intlist.push back ...