变量乘法

时间:2013-03-04 23:29:04

标签: bash multiplication factorial

我正在创建一个脚本,它为插入的数字提供了阶乘,但我在乘法时遇到了一些问题。

注意:因子由下式给出: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

非常感谢, 最诚挚的问候

1 个答案:

答案 0 :(得分:51)

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

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

相当于:

result=$(( * $input))

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