bash – 变量乘法

前端之家收集整理的这篇文章主要介绍了bash – 变量乘法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在制作一个脚本,为插入的数字提供阶乘,但是我有一些乘法问题。

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

这是我的代码

  1. #!/bin/bash
  2.  
  3. echo "Insert an Integer"
  4.  
  5. read input
  6.  
  7. if ! [[ "$input" =~ ^[0-9]+$ ]] ; then
  8. exec >&2; echo "Error: You didn't enter an integer"; exit 1
  9. fi
  10.  
  11. function factorial
  12. {
  13. while [ "$input" != 1 ];
  14. do
  15. result=$(($result * $input))
  16. input=$(($input-1))
  17. done
  18. }
  19. factorial
  20. echo "The Factorial of " $input "is" $result

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

目前的输出是:

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

非常感谢,
最好的祝福

主要的问题是你永远不会初始化结果(1),所以这样:
  1. result=$(($result * $input))

相当于:

  1. result=$(( * $input))

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

猜你在找的Bash相关文章