用JavaScript,打印水仙花数;

Posted cxymm

tags:

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

<!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,打印水仙花数;的主要内容,如果未能解决你的问题,请参考以下文章

打印水仙花数

用c语言写出在10000内的所有水仙花数

c语言编程题打印出所有的“水仙花数”所谓“水仙花数”是指一个三位数其各位数字立方和等于该数本身

C++打印水仙花数

每日算法 ---- 打印所有水仙花数

Java小白入门200例54之打印水仙花数