标题: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



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-171492-1-1.html




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

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