摘要:
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 阅读全文