挿入された数値の階乗を与えるスクリプトを作成していますが、乗算にいくつかの問題があります。
注:の階乗は次によって与えられます: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
よろしくお願いします
主な問題は、result
を(1
に)初期化しないことです。したがって、
result=$(($result * $input))
これと同等です:
result=$(( * $input))
これは有効な算術式ではありません。