小编Ura*_*ake的帖子

变量乘法

我正在编写一个脚本,为插入的数字提供阶乘,但我在乘法时遇到了一些问题.

注意:因子由下式给出: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
Run Code Online (Sandbox Code Playgroud)

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

目前输出是:

joaomartinsrei@joaomartinsrei ~/Área de Trabalho/Shell $ ./factorial.sh
Insert an Integer
3
./factorial.sh: line 15: * 3: syntax error: operand expected (error token …
Run Code Online (Sandbox Code Playgroud)

bash multiplication factorial

32
推荐指数
1
解决办法
8万
查看次数

标签 统计

bash ×1

factorial ×1

multiplication ×1