我知道这是基本问题,但我无法在 unix 中编写简单的加法程序。我正在使用 cygwin 编写 shell 脚本 我的脚本是这样的
#!/bin/sh
echo "enter the first number"
read a
echo "enter the seconf number"
read b
echo [$a + $b]
我知道这是基本问题,但我无法在 unix 中编写简单的加法程序。我正在使用 cygwin 编写 shell 脚本 我的脚本是这样的
#!/bin/sh
echo "enter the first number"
read a
echo "enter the seconf number"
read b
echo [$a + $b]