shell运用——阶乘函数

    科技2025-01-08  17

    函数脚本

    #/bin/bash read -p "输入数字:" N fac(){ if [ $1 = 1 ] then echo 1 else tmp=$[$1-1] result=$(fac $tmp) echo $[$1 * $result] fi } result=$(fac $N) echo $result

    执行效果

    [root@localhost ~]# ./jiechen.sh 输入数字:6 720
    Processed: 0.021, SQL: 8