标题:求助~~~~~~~~~~~~~~~~~~~~~~~
只看楼主
taky
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2007-11-21
 问题点数:0 回复次数:1 
求助~~~~~~~~~~~~~~~~~~~~~~~
#include <fstream>
#include <string>

using namespace std;
int main()
{
int a[5];
string b[5];
ofstream outfile("lala.txt",ios::out);
if( !outfile )
{
cerr << "open error!" << endl;
exit(1);
}

for(int i=0 ;i<5; i++)
{
cin >> b[i] >> a[i];
outfile << b[i] << " " << a[i] << endl;
}
outfile.close();
return 0;
}
此段在dev中就提示说,cin和cerr不存在,
觉得这段语法应该很标准,该怎么改啊?

同样是此段,用c-free编译,
让程序保存在编译器默认的文件夹,则能够运行
但是,保存在其他文件夹,则提示:no such file or directory
no input files
搜索更多相关主题的帖子: include return 编译器 文件夹 
2008-01-12 15:16
linsua
Rank: 1
等 级:新手上路
帖 子:275
专家分:0
注 册:2008-1-2
得分:0 
#include<iostream>

如果你对我的话感到再明白不过 那恐怕你是误解了我的意思
2008-01-12 16:28



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




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

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