习题2-1 水仙花数

Posted zhuzehua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了习题2-1 水仙花数相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
#include<math.h>
int main() {
    int x;
    for (x = 100; x < 1000; x++)
    {
        int a = x / 100;
        int b = (x - a * 100) / 10;
        int c = x - a * 100 - b * 10;
        if (x == pow(a, 3) + pow(b, 3) + pow(c, 3))
        {
            printf("%d\n", x);
        }
    }
    
    return 0;
}

 

以上是关于习题2-1 水仙花数的主要内容,如果未能解决你的问题,请参考以下文章

算法入门第二章练习题

Python练习题 009:水仙花数

练习题5:水仙花数

Java基础50道经典练习题——水仙花数

Java基础50道经典练习题——水仙花数

[PTA]习题5-6 使用函数输出水仙花数