回覆列表
  • 1 # 心若向陽58587

    1、利用C++按行讀取文字檔案其實很簡單。假設有一個文字檔案,如下所示:1 2 32 3 43 4 55 6 77 8 9檔名為split.txt目的:按照行讀取資料,並一個個的顯示出來。2、例程:

    #include <iostream>#include <sstream>#include <fstream>#include <string>int main(int args, char **argv){std::ifstream fin("split.txt", std::ios::in);char line[1024]={0};std::string x = "";std::string y = "";std::string z = "";while(fin.getline(line, sizeof(line))){std::stringstream word(line);word >> x;word >> y;word >> z;std::cout << "x: " << x << std::endl;std::cout << "y: " << y << std::endl;std::cout << "z: " << z << std::endl;}fin.clear();fin.close();return 0;}

  • 中秋節和大豐收的關聯?
  • 母豬產仔太大下不來,都6天了怎麼辦?