首页 > 代码库 > 7.22扩展题

7.22扩展题

第一题:
X3 * 6528 = 3X * 8256
X为一个数字 填入一个数字 使等式成立

第二题:
在页面上输出以下图形
    *
   ***
  *****
 *******
*********

第三题:
找出100-999之间的所有“水仙花数”。所谓水仙花数是指一个三位 数,各位数字的立方和等于该数本身。(如15的3次方=1的3次方+5的3次方+3的3次方)并输出这些数字

第四题:
输出1000年到现在的所有闰年

第五题:
编写程序,计算 1!+2!+3!+…..+10!的结果。

1:

<script>
    for(x=1;x<10;x++){
        var a=10*x+3
        var b=3*10+x
        if(a*6528==b*8256){
            alert(x)
        }
    }
</script>

2:

<script>
   (1) a="*"
    for(i=1;i<6;i++){
        for(y=1;y<6-i;y++){
            document.write("&nbsp","&nbsp")
        }
        for(x=1;x<2*i;x++){
            document.write(a)
        }
        document.write("<br />")
    } 

(2)  a="*"    for(i=1;i<6;i++){
        for(y=4;y>i-5;y--){
            document.write("&nbsp","&nbsp")
        }
        for(x=1;x<2*i;x++){
            document.write(a)
        }
        document.write("<br />")
    }
</script>
3:

<script>
    for(x=1;x<10;x++){
            for(y=0;y<10;y++){
                for(z=0;z<10;z++){
                    a=x*x*x+y*y*y+z*z*z
                    b=100*x+10*y+z
                    if(a==b&&b>=100&&b<=999){
                        document.write(x+""+y+""+z+"<br />")
                    }
                }
            }
        }
</script>
4:

<script>
    for(x=1000;x<2018;x++){
        if(x%4==0&&x%100!==0||x%400==0){
            document.write(x+",")
        }
    }
</script>
5:

<script type="text/javascript">
    c=0
    for(i=1;i<11;i++){
        b=1
        for(a=1;a<i+1;a++){
            b *=a
            
        }
        c +=b    
    }
    document.write(c)
</script>

7.22扩展题