标签: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