马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 ForAtri 于 2021-5-20 11:02 编辑
题目是用两个函数,一个来判断是否为水仙花数,另一个是用来打印两个参数开区间内的所有水仙花数。(两个参数确保在100到10000之间,且第一个小于等于第二个)
我的思路是先用数组存放参数的每一位数,并对其求立方并加和判断是否与原数相等,但是输出结果总是不全,总是只输出1000以内的数,希望大佬不吝赐教。(main函数是题目给的我修改不了)
代码如下:#include <stdio.h>
int narcissistic( int number );
void PrintN( int m, int n );
int main()
{
int m, n;
scanf("%d %d", &m, &n);
if ( narcissistic(m) ) printf("%d is a narcissistic number\n", m);
PrintN(m, n);
if ( narcissistic(n) ) printf("%d is a narcissistic number\n", n);
return 0;
}
int narcissistic( int number )
{
int a[5]={0,0,0,0,0};
int i=0;
int temp=number;
int triSum=0;
while(temp)
{
a[i]=temp%10;
temp/=10;
i++;
}
for(int j=0;j<5;j++)
{
triSum+=(a[j]*a[j]*a[j]);
}
if(triSum==number)
{
return 1;
}
else
{
return 0;
}
}
void PrintN( int m, int n )
{
if(n-m<=1)
{
return;
}
else
{
for(int k=m+1;k<n;k++)
{
if(narcissistic(k))
{
printf("%d\n",k);
}
}
}
}
输入及输出结果如下:
100 10000
153
370
371
407
Process returned 0 (0x0) execution time : 4.420 s
Press any key to continue.
思路当然没错,但是如果你真能找到一个符合要求的数那是不存在的,水仙花数本身只存在于100到1000之间,在四位数中,所有的数都是不满足条件的。你就相当于用代码去找一个不存在符合要求结果的区间,它只能给你空输出了。
|