标签:style blog ar color sp 文件 div log bs
去掉文件中的某个字或符号
#include "fstream" using namespace std ; int main() { ifstream fin("a.txt") ; ofstream fout("b.txt") ; char a ; while (!fin.eof()) { fin >> a ; if (a == ‘?‘) { fout << ‘ ‘ ; }else fout << a ; } return 0 ; }
标签:style blog ar color sp 文件 div log bs
原文地址:http://www.cnblogs.com/jasonkent27/p/4168364.html