讀檔案
開啟檔案方式 —— ios::in
輸入流 —— ifstream
讀取檔案有 四種 操作
#include
using
namespace std;
#include
#include
//標頭檔案的包含
//文字檔案 讀檔案
void
test01()
//4、讀資料
//第一種
char buf[
1024]=
;while
(ifs>
>buf)
//將檔案內容讀到字元陣列中,當讀到檔案結尾時,會返回假的標誌,結束while迴圈
//第二種
// char num[1024]=;
// while(ifs.getline(num,sizeof(num)))
//
//第三種
// string ch;
// while(getline(ifs,ch))
//
//第四種 不推薦
// char c;
// while((c=ifs.get()!=eof))
//
//5、關閉檔案
ifs.
close()
;}intmain()
讀文章 檔案操作
輸入樣例 3 shdjhlhjlskjhsj e3 hldjslihjwlhjjwh ejlhijsljh j 13536 52 lakhylkajhlsjh eiylisdjg 356236 樣例輸出 4154 4358 44 include include using namespace std...
txt檔案讀操作
名稱 product.txt 檔案內容 1 f 開啟檔案product.txt 2 f.readlins 讀出檔案的所有行,每一行乙個字串,例如 iphone 9929 n 3 lines 由每一行變成的字串組成的列表 4 line lines的元素,即上面的字串。5 列印的結果是字串中的內容,即 ...
Python 檔案操作 讀
1.read num表示要從檔案中讀取的資料的長度 單位是位元組 如果沒有傳入num,表示讀取檔案中的全部資料。檔案物件.read num 2.readlines readlines可以按照行的方式把整個檔案中的內容進行一次性讀取,並返回的是乙個列表,其中每一行的資料為乙個元素。開啟檔案 f ope...