c++如何输出txt文件

如何把一个int数组输出到一个txt文件里,最好有简单程序代码... 如何把一个int数组输出到一个txt文件里,最好有简单程序代码 展开
 我来答
judyfeng1980
推荐于2017-10-01 · TA获得超过3255个赞
知道小有建树答主
回答量:935
采纳率:0%
帮助的人:723万
展开全部
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
double x,y,z;
int m;
ofstream outfile("d:/a/f1.txt",ios::in);
if(!outfile)
{
cerr<<"open f1.txt error!\n";
return 0;
}
cout<<"The first number is ";
cin>> x;
outfile<<x<<endl;
cout<<"The second number is ";
cin>>y;
outfile<<y<<endl;;
cout<<"The third number is ";
cin>> z;
outfile<<z<<endl;
m=(x+y+z)/3+0.5;
outfile<<m<<endl;
cout<<"The average number is "<<m<<endl;
outfile.close();

return 0;

}
追问
复制挺快的嘛;
by the way ,thanks
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wlq5800
2011-09-20 · TA获得超过381个赞
知道小有建树答主
回答量:703
采纳率:0%
帮助的人:690万
展开全部
CString struser;
CStdioFile file;
if( !file.Open(".\\data.ini", CFile::modeCreate|CFile::modeWrite) )
{
return;
}
file.WriteString(struser);
file.WriteString("\n");
file.Close();
更多追问追答
追问
".\\data.ini"这是什么格式的,什么意思
追答
ini可以直接改后缀为txt,都是文本文件
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
趣事情
推荐于2017-09-10 · 知道合伙人互联网行家
趣事情
知道合伙人互联网行家
采纳数:517 获赞数:5452
电脑技术,软件开发。移动开发。网站建设相关专业知识。都可以提供解答和相关技术指导。

向TA提问 私信TA
展开全部
C++实现

#include <iostream>
#include <fstream>
using namespace std;

int main( int argc, char** argv )
{
ofstream
poi1,poi2;

poi1.open("point_O.txt",ios::out|ios::app);

poi1.setf(ios::fixed, ios::floatfield);

poi1.setf(ios::showpoint);

poi2.open("point_T.txt",ios::out|ios::app);

poi2.setf(ios::fixed, ios::floatfield);

poi2.setf(ios::showpoint);

poi1<<
matches[i].first.x
<< "\t"
<<
matches[i].first.y
<< endl;

poi2<< matches[i].second.x
<< "\t"
<< matches[i].second.y
<< endl;

poi1.close();

poi2.close();

std::cout<<
"Matches: " << matches.size(); //
输出数据到显示终端

}

//
注意如果在后缀为C的源文件上,采用C++输出方法来输出数据到txt文件,VS2008编译器可能报错。解决方法是将后缀改为CPP,并另建一个新的工
程,然后采用c++的输出方法,这样比较方便些。如果C文件中使用了一些非法关键字,那么修改这些变量的定义,以免与c++的关键字重复定义。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式