42

我正在制作一个脚本来计算给定数字的阶乘,但是我在乘法方面遇到了一些问题。

注意:阶乘由下式给出:9!=9*8*7*6*5*4*3*2*1

这是我的代码:

#!/bin/bash

echo "Insert an Integer"

read input

if ! [[ "$input" =~ ^[0-9]+$ ]] ; then
   exec >&2; echo "Error: You didn't enter an integer"; exit 1
fi

function factorial
{
while [ "$input" != 1 ];
do
    result=$(($result * $input))
    input=$(($input-1))
done
}
factorial
echo "The Factorial of " $input "is" $result

它不断给我各种不同乘法技术的错误:/

目前的输出是:

joaomartinsrei@joaomartinsrei ~/Área de Trabalho/Shell $ 
./factorial.sh
Insert an Integer
3
./factorial.sh: line 15: * 3: syntax error: operand expected (error token is "* 3")
The factorial of 3 is
4

1 回答 1

71

主要问题是您从不初始化result(to 1),因此:

result=$(($result * $input))

相当于:

result=$(( * $input))

这不是一个有效的算术表达式。

于 2013-03-04T23:32:14.153 回答