我想做一个函数,将返回bash中的数字的阶乘
这是现在的代码不起作用,任何人都可以告诉我有什么问题以及如何纠正?我刚刚开始学习bash,我不太了解。
#!/bash/bin factorial() { let n=$1 if (( "$n" <= "1" )) then return 1 else factorial n-1 return $n*$? fi return 0 } factorial 5 echo "factorial 5 = $?"
有几种语法和一个很明显的逻辑(返回0)
原文链接:https://www.f2er.com/bash/388004.html工作版本如下:
#!/bin/bash factorial() { if [ $1 -le 1 ] then return 1 else factorial $[$1-1] return $[$1*$?] fi } factorial 5 echo "factorial 5 = $?"
你失踪了
>如果语法不好递归电话不好> return is bad(eval Syntax bad there)> shbang行(is / bin / bash not / bash / bin)