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( に1) 初期化しないことです。したがって、次のようになります。

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

これと同等です:

result=$(( * $input))

これは有効な算術式ではありません。

于 2013-03-04T23:32:14.153 に答える