| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 441 人关注过本帖
标题:I/O的问题!
取消只看楼主 加入收藏
wangzm07
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2007-9-11
收藏
 问题点数:0 回复次数:1 
I/O的问题!

本人自学C++,首次发贴,希望不是浪费各大虾时间。
问下面的程序输出没有空格怎么回事,怎么把空格弄出来?(环境VC6.0)
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main()
{
string st("hello world!");
ofstream ofile("file");
if(!ofile)
{cerr<<"error:unable to open input file;"<<ofile<<endl;
return -1;
}
ofile<<st<<endl;
ofile.close();


ifstream ifile("file");
if(!ifile)
{cerr<<"error:unable to open input file;"<<ofile<<endl;
return -1;
}
char a;
while(ifile>>a)

cout<<a<<flush;
cout<<endl;
return 0;

}

搜索更多相关主题的帖子: include return hello 
2007-09-20 13:59
wangzm07
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2007-9-11
收藏
得分:0 
空格指hello与world之间的空格。
2007-09-20 14:10
快速回复:I/O的问题!
数据加载中...
 
   



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

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