题解 | #水仙花数#

水仙花数

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

#include <stdio.h>
#include <math.h>
int main() {
    int m, n,i,count=0;
    while((scanf("%d %d",&m,&n))!=EOF)      
    {
        for(i=m;i<=n;i++)
        {
            if((pow(i%10,3)+pow((i/10)%10,3)+pow((i/100)%10,3))==i)
            {
                printf("%d ",i);
                count++;
            }
        }
        if(count==0)
        {
            printf("no");
        }
    }
    return 0;
}
全部评论

相关推荐

起名字真难233:这名字一看就比什么上海寻梦信息技术有限公司,北京三快网络技术有限公司等高级不少
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务