C++问题求解答

看essentialc++有个问题:#include<iostream>#include<fstream>#include<algorithm>#include<stri... 看essential c++有个问题:
#include <iostream>
#include <fstream>
#include <algorithm>
#include <string>
#include <vector>
using namespace std;
int main()
{
ifstream in_file("C:\\Documents and Settings\\Administrator\\My Documents\\text.txt");
if(!in_file)
{
cerr<<"opps! unable to open input file\n";
return -1;
}
ofstream out_file("C:\\Documents and Settings\\Administrator\\My Documents\\text.sort");
if(!out_file)
{
cerr<<"opps! unable to open output file\n";
return -2;
}
string word;
vector<string> text;
while(in_file>>word)
{
text.push_back(word);
}
int ix;
cout<<"unsorted text:\n";
for(ix=0;ix<text.size();++ix)
cout<<text[ix]<<' ';
cout<<endl;
sort(text.begin(),text.end());
out_file<<"sorted text:\n";
for(ix=0;ix<text.size();++ix)
out_file<<text[ix]<<' ';
out_file<<endl;
return 0;
}
怎么我运行没有输入的,已经有文件了。
展开
 我来答
chujiangke001
2013-05-22 · TA获得超过1605个赞
知道小有建树答主
回答量:1352
采纳率:0%
帮助的人:683万
展开全部
你输入的是这个文件流
ifstream in_file("C:\\Documents and Settings\\Administrator\\My Documents\\text.txt");
你要自己输入文件的话可以这样改。
#include <iostream>
#include <fstream>
#include <algorithm>
#include <string>
#include <vector>
using namespace std;
int main()
{
cout<<"input the filenam:"<<endl;
string filename;
cin>>filename;
ifstream in_file(filename.c_str());
//ifstream in_file("C:\\Documents and Settings\\Administrator\\My Documents\\text.txt");
if(!in_file)
{
cerr<<"opps! unable to open input file\n";
return -1;
}
ofstream out_file("C:\\Documents and Settings\\Administrator\\My Documents\\text.sort");
if(!out_file)
{
cerr<<"opps! unable to open output file\n";
return -2;
}
string word;
vector<string> text;
while(in_file>>word)
{
text.push_back(word);
}
int ix;
cout<<"unsorted text:\n";
for(ix=0;ix<text.size();++ix)
cout<<text[ix]<<' ';
cout<<endl;
sort(text.begin(),text.end());
out_file<<"sorted text:\n";
for(ix=0;ix<text.size();++ix)
out_file<<text[ix]<<' ';
out_file<<endl;
return 0;
}
追问
照着做啊,根本没给输入的机会就直接输出了。
我在想这个:
while(in_file>>word)
{
text.push_back(word);
}
是不是不能进行 写 操作,加了方式还是不行,额,我还是再想想。
TableDI
2024-07-18 广告
VLOOKUP是Excel中用于垂直查找的函数,其基本用法包括四个参数:1. 查找值:即在数据表首列中需要搜索的值。2. 数据表:包含查找值的单元格区域或数组。3. 返回值所在列数:指定返回查询区域中第几列的值。4. 查找方式:选择精确匹配... 点击进入详情页
本回答由TableDI提供
Gifan
2013-05-22 · TA获得超过725个赞
知道小有建树答主
回答量:240
采纳率:0%
帮助的人:258万
展开全部
我换了一个,直接在c根目录建一个文件,然后是可以运行,并可以输出的,你试试换一下路径试试。你那个路径我没有试过,因为我这里没有这个路径
更多追问追答
追问
这个不科学。。。。
追答
但我试过可以
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式