Javascript实现:用递归思想实现阶乘、求和的计算

阶乘计算

递归,即在函数内部调用函数本身。
数字n的阶乘 n! 用递归实现则可以拆解为n乘以数字(n-1)的阶乘,即: n!=n*(n-1)!

阶乘代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>

    <script>

        function factorial(n){

            // 递归的出口,计算1的阶乘可以不用递归
            if (n==1){
                return 1;
            }
           
            return n*factorial(n-1)
        }

        // 举例:计算5的阶乘
        var res= factorial(5);
        document.write(res);

    </script>
    
</body>
</html>

递归求和

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>

    <script>

        // 递归函数
        function add(n) {
            if (n > 1) {
                return n + add(n - 1)
            }
            return 1;
        }

        // 举例:计算1-50的和
        document.write(add(50));

    </script>
    
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值