c++-file about

来源:互联网 发布:淘宝有销量没评价 编辑:程序博客网 时间:2024/04/27 21:19

#include<fstream>


ifstream  infile(filename.c_str());


while( getline( infile,  line) ) {  }

while( infile >> first_position >> second_pos >> ... ) { }


0 0