码迷,mamicode.com
首页 > 编程语言 > 详细

用JavaScript,打印水仙花数;

时间:2018-09-01 12:25:17      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:charset   html   type   水仙花   java   script   OLE   int   doctype   

<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8" />
<title></title>
<script>
//打印水仙花数

var g, s, b;
for (var i = 100; i <= 999; i++) {
g = i % 10;
s = parseInt(i / 10) % 10;
b = parseInt(i / 100);
if (g * g * g + s * s * s + b * b * b == i) {
console.log(i);
}
}
</script>
</head>

<body>
</body>

</html>

用JavaScript,打印水仙花数;

标签:charset   html   type   水仙花   java   script   OLE   int   doctype   

原文地址:https://www.cnblogs.com/cxymm/p/9569334.html

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