码迷,mamicode.com
首页 > 其他好文 > 详细

习题2-1 水仙花数

时间:2019-05-18 11:16:48      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:\n   pow   stdio.h   print   main   return   for   div   clu   

#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 水仙花数

标签:\n   pow   stdio.h   print   main   return   for   div   clu   

原文地址:https://www.cnblogs.com/zhuzehua/p/10884974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!