亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中怎么讀寫文本文件

發布時間:2021-07-20 11:44:42 來源:億速云 閱讀:175 作者:Leah 欄目:編程語言

C++中怎么讀寫文本文件,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

C++讀寫文本文件代碼示例如下:

  1. #include < iostream> 

  2. #include < fstream> 

  3. using namespace std;  

  4. int main()  

  5. {  

  6. const char filename[] = "mytext.txt";  

  7. ofstream o_file;  

  8. ifstream i_file;  

  9. string out_text;  

  10. //寫  

  11. o_file.open(filename);  

  12. for (int i = 1; i < = 10; i++)  

  13. {  

  14. o_file < <  "第" < <  i < <  "行"n"; //將內容寫入到文本文件中  

  15. }  

  16. o_file.close();  

  17. //讀  

  18. i_file.open(filename);  

  19. if (i_file.is_open())  

  20. {  

  21. while (i_file.good())  

  22. {  

  23. i_file >> out_text; //將讀取的內容存儲到變量out_text中  

  24. cout < <  out_text < <  endl;
     //在控制臺輸出讀取的內容。為什么***一行的內容會出現兩次  

  25. }  

  26. }  

  27. else  

  28. cout < <  "打開文件:" < <  filename < <  " 時出錯!";  

  29. i_file.close();  

  30. system("PAUSE");  

  31. return 0;  

  1. #include "stdafx.h"  

  2. #include < iostream> 

  3. #include < fstream> 

  4. #include < string> 

  5. using namespace std;  

  6. int _tmain(int argc, _TCHAR* argv[])  

  7. {  

  8. const char filename[]="test.doc";  

  9. ofstream o_file;
    /* 輸出流:將數據從內存輸出其中ofstream是將數據輸出到文件,
    因此對于文件來說是“寫”*/  

  10. ifstream i_file;
    /*將數據輸入到內存,其中ifstream是說輸入的數據在文件中,
    因此對于文件來說是“讀”*/  

  11. string out_text;  

  12. //寫  

  13. o_file.open(filename);  

  14. for(int i =0;i< =12;i++)  

  15. {  

  16. o_file< < "第"< < i< < "行"n";//將內容寫入文本  

  17. }  

  18. o_file.close();  

  19. //讀  

  20. i_file.open(filename);  

  21. if(i_file.is_open())  

  22. {  

  23. while(i_file>>out_text)  

  24. {  

  25. cout < <  out_text < <  endl;  

  26. }  

  27. }  

  28. else  

  29. cout< < "打開文件:"< < filename< < "時出錯!";  

  30. i_file.close();  

  31. system("PAUSE");  

  32. return 0;  

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

宜宾县| 桂阳县| 通榆县| 朝阳县| 苍山县| 榆树市| 山阳县| 全州县| 周宁县| 青海省| 盈江县| 昌图县| 长沙县| 通化县| 上蔡县| 行唐县| 诸暨市| 平昌县| 沙坪坝区| 民勤县| 呼伦贝尔市| 晋江市| 镇坪县| 河津市| 客服| 搜索| 临潭县| 泸州市| 宁陵县| 汤原县| 财经| 永宁县| 云梦县| 文成县| 奇台县| 潮州市| 白城市| 中西区| 安徽省| 泾阳县| 滨海县|