LINUX:编写一个shell脚本,并利用函数实现数列求和运算

编写一个shell脚本,并利用函数实现数列求和运算。即主程序接受两个数字,分别作为数列头和数列尾,如果第一个数字不小于第二个数字则输出“wrongnumber”,否则将这... 编写一个shell脚本,并利用函数实现数列求和运算。即主程序接受两个数字,分别作为数列头和数列尾,如果第一个数字不小于第二个数字则输出“wrong number”,否则将这两个数字传递给函数;函数把这两个数字中间的数字加起来求和,并输出。
如:当输入 3 6时,函数计算 3+4+5+6的值并输出。
展开
 我来答
甜贝贝0212
2013-07-01
知道答主
回答量:24
采纳率:0%
帮助的人:9.4万
展开全部
 #!/bin/bash
 sum=0
 if [ $# -ne 2 ]
 then
    echo "Please input two numbers!"
 elif [ $1 -gt $2 ]
 then
    echo "The seconde number must be  great the first number."
 else
     for i in $(seq $1 $2)
     do
       sum=`expr $sum + $i`
     done
     echo "\"$1~$2\" sum is $sum"
 fi
 #执行结果
#[root@localhost opt]# ./b.sh 3 6
#"3~6" sum is 18
#[root@localhost opt]# ./b.sh 3 
#Please input two numbers!
#[root@localhost opt]# ./b.sh 3 5 6
#Please input two numbers!
#[root@localhost opt]# ./b.sh 3 2
#The seconde number must be  great the first number.
#[root@localhost opt]# ./b.sh 3 25
#"3~25" sum is 322
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
dingchaoant
2013-06-24 · TA获得超过1110个赞
知道小有建树答主
回答量:203
采纳率:0%
帮助的人:101万
展开全部
#!/bin/sh
fun()
{
sum=0
for i in `seq $1 $2`
do
sum=`expr $i + $sum`
done
echo $sum
}
echo "Please input 2 number:"
read a b
expr $a + 0 1>/dev/null 2>&1
if [[ $? -ne 0 ]];then
echo "wrong number"
exit 1;
fi
expr $b + 0 1>/dev/null 2>&1
if [[ $? -ne 0 ]];then
echo "wrong number"
exit 1;
fi
if [[ $a -ge $b ]];then
echo "wrong number"
exit 1;
fi
fun $a $b
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友5311d79
2013-07-01 · TA获得超过1.9万个赞
知道大有可为答主
回答量:6356
采纳率:71%
帮助的人:3122万
展开全部
#!/bin/bash
sum()
{
   total=0
   for num in `seq $1 $2`
   do
      let total+=num
   done
   echo $total
}   
read -p "Input number1: " num1
read -p "Input number2: " num2
if [ $num1 -ge $num2 ]; then
   echo "Wrong number!"
   exit 1
fi
sum $num1 $num2
exit 0
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
来自梅花山百年难遇的翠鸟
2013-06-25 · 超过34用户采纳过TA的回答
知道答主
回答量:99
采纳率:0%
帮助的人:66万
展开全部
#!/bin/sh
#
#
sum(){
a=$1
b=$2
c=$a
while [ $c -le $b ]
do
sum=$(($sum+$c))
c=$(($c+1))
done
echo $sum
}

read -p "Please input the number1:" x
read -p "Please input the number2:" y
if [ $x -ge $y ];then
echo "wrong number!"
else
sum $x $y
fi
exit 0
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式