| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 456 人关注过本帖
标题:文本变异问题
只看楼主 加入收藏
lixang
Rank: 1
等 级:新手上路
帖 子:231
专家分:0
注 册:2006-7-15
收藏
 问题点数:0 回复次数:2 
文本变异问题

# 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中只有一行呢? 如何解决?

搜索更多相关主题的帖子: 文本 
2006-11-15 15:29
corrupt
Rank: 2
等 级:新手上路
威 望:3
帖 子:535
专家分:0
注 册:2004-9-29
收藏
得分:0 
# 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;
}
inf.close();
outf.close();
}

2006-11-15 16:02
lixang
Rank: 1
等 级:新手上路
帖 子:231
专家分:0
注 册:2006-7-15
收藏
得分:0 
以下是引用corrupt在2006-11-15 16:02:10的发言:
# 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;
}
inf.close();
outf.close();
}

你这样写,虽然没有乱码!,
但是写到b.txt中的后,失去了换行!

2006-11-16 12:30
快速回复:文本变异问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.050636 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved