码迷,mamicode.com
首页 > Web开发 > 详细

JS 1000以内的水仙花数 (三位数 各个数字的立方和等于本身 例如 1*1*1 + 5*5*5 + 7*7*7 = 157)

时间:2018-04-10 10:52:48      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:script   utf-8   doctype   水仙花   span   rip   oct   body   color   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
    </body>
</html>
<script type="text/javascript">
    
   for(i=100;i<1000;i++){
        var a = parseInt(i%10);
        var b = parseInt((i/10)%10);
        var c = parseInt(i/100);
        if(a*a*a+b*b*b+c*c*c==i){
            document.write(i + "水仙花数"+"<br/>");
        }
    }

</script>

 

JS 1000以内的水仙花数 (三位数 各个数字的立方和等于本身 例如 1*1*1 + 5*5*5 + 7*7*7 = 157)

标签:script   utf-8   doctype   水仙花   span   rip   oct   body   color   

原文地址:https://www.cnblogs.com/hankai2735/p/8776473.html

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