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

四叶玫瑰数

时间:2018-04-05 11:50:48      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:doc   title   head   var   for   class   weight   math   parse   

四叶玫瑰数是指四位数各位上的数字的四次方之和等于本身的数。(参考水仙花数)

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>四叶玫瑰数</title>
<script>
for(var n=1000;n<10000;n++){
var a=parseInt(n/1000);
var b=parseInt(n%1000/100);
var c=parseInt(n%100/10);
var d=n%10;
if(Math.pow(a,4)+Math.pow(b,4)+Math.pow(c,4)+Math.pow(d,4)==n){
console.log(n);
}
}
</script>
</head>
<body>

</body>
</html>


 
 

四叶玫瑰数

标签:doc   title   head   var   for   class   weight   math   parse   

原文地址:https://www.cnblogs.com/Daisy0331/p/8721231.html

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