急!!c++最后如何将程序的结果在屏幕上输出并写入文本文件output.txt中。程序如下

#include<iostream.h>inthw(intn){inta[100];intws=0,q=n;for(;q>0;){ws++;a[ws]=q%10;q=q/... #include<iostream.h>
int hw(int n)
{
int a[100];
int ws=0,q=n;
for(;q>0;)
{
ws++;
a[ws]=q%10;
q=q/10;
}
for(int b=1;b<ws;b++,ws--)
{
if(a[b]!=a[ws])
{
return 0;
}
}
return 1;
}
void main()
{
cout<<"在11~999之间这样的数有";
for(int n=11;n<=999;n++)
{
if(hw(n)&&hw(n*n)&&hw(n*n*n))
cout<<n<<" ";
}
cout<<"\n";
}
展开
 我来答
guodongdb
2012-06-08 · TA获得超过155个赞
知道答主
回答量:211
采纳率:0%
帮助的人:162万
展开全部
main函数稍微改一下,加上文件指针,每输出一个数字,写一个进文本就好。
本来也是可以正常输出的啊。。。如果是一闪而过,在main最后加一个system("pause");
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
刘阿氓
2012-06-08 · 超过20用户采纳过TA的回答
知道答主
回答量:50
采纳率:0%
帮助的人:54.1万
展开全部
#include <fstream>
#include <iostream>

然后main()改写:
void main()
{
ofstream fout("output.txt");
cout<<"在11~999之间这样的数有";
fout<<"在11~999之间这样的数有";
for(int n=11;n<=999;n++)
{
if(hw(n)&&hw(n*n)&&hw(n*n*n)){
cout<<n<<" ";
fout<<n<<" ";
}
}
cout<<"\n";
fout<<"\n";
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友b3f293a30
2012-06-08 · TA获得超过326个赞
知道小有建树答主
回答量:139
采纳率:0%
帮助的人:177万
展开全部
#include<iostream>
#include<cstdio>
using namespace std;

int hw(int n)
{
int a[100];
int ws=0,q=n;
for(;q>0;)
{
ws++;
a[ws]=q%10;
q=q/10;
}
for(int b=1;b<ws;b++,ws--)
{
if(a[b]!=a[ws])
{
return 0;
}
}
return 1;
}
int main()
{
freopen("output.txt","w",stdout);
cout<<"在11~999之间这样的数有";
cerr<<"在11~999之间这样的数有";
for(int n=11;n<=999;n++)
{
if(hw(n)&&hw(n*n)&&hw(n*n*n))
{cout<<n<<" "; cerr<<n<<" ";}

}
cout<<"\n";
cerr<<"\n";
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
mia☆jiancha☆ce6608
2012-06-08 · TA获得超过1526个赞
知道小有建树答主
回答量:713
采纳率:100%
帮助的人:496万
展开全部
#include <iostream>
#include <fstream>
using namespace std;

int hw(int n)
{
int a[100];
int ws=0,q=n;
for(;q>0;)
{
ws++;
a[ws]=q%10;
q=q/10;
}
for(int b=1;b<ws;b++,ws--)
{
if(a[b]!=a[ws])
{
return 0;
}
}
return 1;
}
int main()
{
fstream output("output.txt", ios::out);
cout<<"在11~999之间这样的数有";
for(int n=11;n<=999;n++)
{
if(hw(n)&&hw(n*n)&&hw(n*n*n)) {
cout<<n<<" ";
output << n << " ";
}
}
cout<<"\n";
output.close();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式