急!!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";
} 展开
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";
} 展开
4个回答
展开全部
main函数稍微改一下,加上文件指针,每输出一个数字,写一个进文本就好。
本来也是可以正常输出的啊。。。如果是一闪而过,在main最后加一个system("pause");
本来也是可以正常输出的啊。。。如果是一闪而过,在main最后加一个system("pause");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#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";
}
#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";
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#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";
}
#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";
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#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();
}
#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();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询