for i in range(100, 1000): ge = i % 10 shi = i // 10 % 10 bai = i // 100 if ge ** 3 + shi ** 3 + bai ** 3 == i: print(i, end=‘ ‘) #输出结果 #153 370 371 407
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写自定义函数,求水仙花数,并输出相关的知识,希望对你有一定的参考价值。
水仙花数是指一个N位正整数(N≥3),它的每个位上的数字的N次幂之和等于它本身。例如:153=13+53+33。 本题要求编写两个函数,一个判断给定整数是否水仙花数,另一个按从小到大的顺序打印出给定区间(m,n)内所有的水仙花数。
函数接口定义:
int narcissistic(int number);
void PrintN(int m,int n);
函数narcissistic判断number是否为水仙花数,是则返回1,否则返回0。
函数PrintN则打印开区间(m,n)内所有的水仙花数,每个数字占一行。题目保证100≤m≤n≤10000。
例:
#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;
运行:
方法一、
#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 count,digit,item,n,sum,ret,k,i;
n=number,count=0;
while(n)//算出number是几位数。
n/=10;
count++;
sum=0,n=number;
while(n)
digit=n%10;
item=1;
for(i=0;i<count;i++)
item*=digit;
sum+=item;
n/=10;
if(sum==number)ret=1;
else ret=0;
return ret;
void PrintN(int m,int n)
int i;
for(i=m+1;i<n;i++)
if(narcissistic(i))printf("%d\\n",i);
方法二:
int narcissistic(int number)
int count,sum,temp,ret;
count=0,temp=number;
while(temp)
count++;
temp/=10;
sum=0,temp=number;
while(temp)
sum+=pow(temp%10,count);
temp/=10;
if(sum==number)ret=1;
else ret=0;
return ret;
void PrintN(int m,int n)
int i;
for(i=m+1;i<n;i++)
if(narcissistic(i))printf("%d\\n",i);
参考技术A//PTA上的练习题,我自己写的,测试过没有问题,请采纳
#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, b, c, i;
int count=0, sum = 0, num;
//确定位数
a=number;
while (a)
a /= 10;
count++; //位数
//拆位进行累加
c = number;
while (c)
num = c % 10;
c = c /10;
b=1;
//以下这部可以使用sum += pow(num,count);
for (i=0; i<count; i++)
b *= num;
sum +=b;
//进行判断
if (sum == number)
return 1;
else
return 0;
void PrintN( int m, int n )
m = m+1;
for (m; m<n; m++)
if (narcissistic(m))
printf ("%d\\n",m);
//以下是测试代码截图
参考技术B #include<stdio.h>for i in range(100, 1000): ge = i % 10 shi = i // 10 % 10 bai = i // 100 if ge ** 3 + shi ** 3 + bai ** 3 == i: print(i, end=‘ ‘) #输出结果 #153 370 371 407
以上是关于编写自定义函数,求水仙花数,并输出的主要内容,如果未能解决你的问题,请参考以下文章