我知道这是基本问题,但我无法在unix中编写简单的添加程序。我正在使用cygwin编写shell脚本我的脚本是这个
#!/bin/sh
echo "enter the first number"
read a
echo "enter the seconf number"
read b
echo [$a + $b]
答案 0 :(得分:1)
#!/bin/sh
echo "enter the first number"
read a
echo "enter the seconf number"
read b
echo $(($a+$b))
答案 1 :(得分:0)
要添加两个数字,您可以执行以下操作:
let c = $a + $b
echo $c
要阅读,您可以这样做:
read -p "Enter the first number" a
read -p "Enter the second number" b