题解 | #水仙花数#

水仙花数

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

#include <stdio.h>
int main() {
    int m = 0, n = 0;
    int a = 0, b = 0, c = 0; //个十百
    int count  = 0;
    while (scanf("%d %d", &m, &n) != EOF) {
        for (int i = m; i < n; i++) {
            a = i % 10;
            b = (i / 10) % 10;
            c = i / 100;
            if (a * a * a + b * b * b + c * c * c == i) {
                printf("%d ", i);
                count++;
            }
            
        }
        if (count == 0) {
                printf("no\n");
            } else {
               printf("\n");
            }
    }
    return 0;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-04 18:02
好不容易拿到了字节Offer,鼠鼠做后端的,但家里人觉得可能被裁员不稳定,让鼠鼠去投国企,现在好纠结到底该咋选
文档传偷助手:该投就投吧,不过建议别放弃offer 拿到手里的才是最好的
投递字节跳动等公司8个岗位
点赞 评论 收藏
分享
06-15 18:44
黄淮学院 Java
Lynn012:如果是居民楼还是算了吧,看着有点野呢
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务