文本变异问题
# include<iostream.h>
#include<fstream.h>
void main()
{
char s[12];
ifstream inf("d:\\a.txt");
ofstream outf("d:\\b.txt");
while(!inf.eof())
{
inf.getline(s,12);
outf<<s<<endl;
}
inf.close();
outf.close();
}
a.txt的内容:
周书记强调,管理、服务部门要坚持“育人为本,知行统一”的办学理念,
b.txt的内容:
周书记强调?
??癫棵乓?
坚持“育人?
?荆??型?
一”的办学?
砟睿?
问题1:为什么到了b.txt中乱码!: 如何解决?
问题2:为什么在b.txt中只有一行呢? 如何解决?