JS 1000以内的水仙花数 (三位数 各个数字的立方和等于本身 例如 1*1*1 + 5*5*5 + 7*7*7 = 157)...

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 + "水仙花数"+"
"); } } script>

 

转载于:https://www.cnblogs.com/hankai2735/p/8776473.html

你可能感兴趣的:(JS 1000以内的水仙花数 (三位数 各个数字的立方和等于本身 例如 1*1*1 + 5*5*5 + 7*7*7 = 157)...)