当我在终端上输入多于1个参数时,继续遇到这个问题:
./ learn 1 2
我从while循环中得出结论,但评论的东西没有达到原因。
#!/bin/ksh
#
count=$#
if test $count -lt 1
then
echo "Enter at least 1 number"
exit
elif test $count -gt 9
then
echo "Enter max 9 numbers"
exit
else
echo "Parameter check: PASSED"
fi
set -A numbers $@
first=${numbers[0]}
if test $count -eq 1
then
echo "$first = $first"
exit
else
sum=$first
printf "$first + "
fi
while test "$count" -gt 1
do
shift
first=${numbers[0]}
((sum = sum + first))
if test $count -gt 2
then
printf "$first + "
else
printf "$first = $sum"
fi
((count = count - 1)
done
它基本上是一个程序,它接收用户输入...即从屏幕1 2 3并加在一起得到一笔总和
答案 0 :(得分:5)
done
之前的行,
((count = count - 1)
有两个开口,但只有一个闭合支撑。