Linux中shell编程——编写shell脚本,实现功能:对于用户输入的任意数值,计算n!

实验目的

理解shell程序的设计方法
掌握shell程序编辑、运行、调试方法与过程

实验内容

shell简单编程

实验过程

要求:
1.记录实验过程,对关键过程进行文字说明并附上操作截屏。
2.逻辑清晰、排版美观。

编写shell脚本,实现功能:对于用户输入的任意数值,计算n!


程序代码:

#!/bin/bash
multiply()
{
    if [ $1 -gt 1 ]; then
        result=`expr $result \* $1`
        next=`expr $1 - 1`
        multiply $next
    fi
}
if [ $# -ne 1 ]; then
      echo -e "Please input a parameter!\nUsage: $0 [n]"
      exit 1
fi
result=1
if [ $1 -eq 1 ]; then
      :
elif [ $1 -gt 1 ]; then
      multiply $1
else
      echo "Invalid input parameter! It MUST be a integer greater than 0."
      exit 1
fi
echo "$1! = $result"
exit 0

运行结果:
Linux中shell编程——编写shell脚本,实现功能:对于用户输入的任意数值,计算n!_第1张图片

你可能感兴趣的:(Linux,linux,shell)