第十四周:閱讀程式(2)
阿新 • • 發佈:2019-02-11
問題及程式碼:
/* * Copyright (c)2015, 煙臺大學計算機學院學生 * All rightsreserved. * 檔名稱: x.cpp * 作者 : 李楠 * 完成日期: 2015年6月3日 * 版本號 : v1.0 * 問題描述:(2)說出程式的功能,並上機驗證(請自建a.txt) * 輸入描述: 略 * 程式輸出: 略 */ #include <iostream> #include <fstream> using namespace std; int main() { ifstream readFile; ofstream writeFile; char ch; readFile.open("a.txt", ios::in); writeFile.open("b.txt", ios::out); while (readFile.get(ch)) writeFile.put(ch); readFile.close(); writeFile.close(); cout << "Finish!" << endl; return 0; }
執行結果:
知識點總結:
程式的功能是在a.txt中寫入檔案,在b.txt中輸出讀出檔案。
學習心得:
有時候分不清讀入和輸出什麼的……有點混亂