2013年11月15日
摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 6 int main() { 7 ifstream ifs("tuan.sql", ifstream::in); 8 ofstream ofs("trv.txt", ofstream::out); 9 string s,value;10 char c1;11 int start_pos=0,end_pos=0;12 while(!ifs.eof() && !ifs.fail()) {13 ifs >> s;14 阅读全文
posted @ 2013-11-15 15:21 笔记吧... 可能只有自己看得懂 阅读(388) 评论(0) 推荐(0) 编辑