题解 | #变种水仙花#

变种水仙花

https://www.nowcoder.com/practice/c178e3f5cc4641dfbc8b020ae79e2b71

#include<stdio.h>
#include<stdbool.h>
_Bool narcissisticplus(int n)
{
    int number=n;
    int k=10;
    int count=0;
    int sum=0;
    while(count<=4)
    {
        sum+=(n%k)*(n/k);
        k*=10;
        count++;
    }
    if(sum==n)
    return true;
    else
     return false;
}
int main()
{
    for(int i=10000;i<100000;i++)
    {
        if(narcissisticplus(i))
        {
            printf("%d ",i);
        }
    }

    return 0;
}

全部评论

相关推荐

一颗宏心:华为HR晚上过了十二点后还给我法消息。
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务