0

我知道这是基本问题,但我无法在 unix 中编写简单的加法程序。我正在使用 cygwin 编写 shell 脚本 我的脚本是这样的

#!/bin/sh
echo "enter the first number"
read a
echo "enter the seconf number"
read b
echo  [$a + $b]
4

2 回答 2

1
#!/bin/sh
echo "enter the first number"
read a
echo "enter the seconf number"
read b
echo  $(($a+$b))
于 2013-10-15T18:59:19.310 回答
0

要添加两个数字,您可以这样做:

let c = $a + $b
echo $c

要阅读,您可以执行以下操作:

read -p "Enter the first number" a
read -p "Enter the second number" b
于 2013-10-15T18:57:03.397 回答