所以在JavaScript当中求打印3位数中所有的水仙花数,与Java、c等语言逻辑是一样的,只不过些许地方需要注意。 在我的代码中,使用了button按钮,当点击button时 会触发所对应的事件,将结果显示在div当中; 其中的console.log();实在浏览器控制台输出的,能够随时检查结果; 实现打印3位数中所有的水仙花数,使用了内部方法,...
153/100 (153-1*100)/10 153-1*100-5*10 */ document.write("100---999之间的水仙花数为:"); document.write(""); for(i = 100; i < 1000;i++){ var num1 = Math.floor(i/100); var num2 = Math.floor((i - num1*100)/10); var num3 = Math.floor(i-(num1*100)-(num2 * ...
//打印水仙花数 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); } } ...
153/100 (153-1*100)/10 153-1*100-5*10 */ document.write("100---999之间的水仙花数为:"); document.write(""); for(i = 100; i < 1000;i++){ var num1 = Math.floor(i/100); var num2 = Math.floor((i - num1*100)/10); var num3 = Math.floor(i-(num1*100)-(num2 * ...