這次我給大家帶了計算器的shell指令碼,簡化版本o,下次還會有其他的呢~
#!/bin/bash
read -p 「請輸入第乙個數:」 x
read -p 「請選擇運算符號:+,-,×,/,%」 sys
read -p "請選擇第二個數: " y
if [ $sys = 「+」 ]
then
echoexpr $x + $y
elif [ $sys = 「-」 ]
then
echoexpr $x - $y
elif [ $sys = 「×」 ]
then
echoexpr $x \* $y
elif [ $sys = 「/」 ]
then
echoexpr $x / $y
elif [ $sys = 「%」 ]
then
echoexpr $x % $y
else
echo 「超出運算範圍」
fi這就是俺滴計算器小指令碼,歡迎指正不當地方,加以改正~
shell指令碼計算器
shell指令碼編寫計算器 直接上 bin bash falg 1 while falg eq 1 doecho shell迷你計算器 echo 請選擇對應的運算數字 echo 1 表示加法 echo 2 表示減法 echo 3 表示乘法 echo 4 表示除法 echo 5 退出計算器!read ...
shell指令碼編寫計算器
shell指令碼編寫計算器 bin bash falg 1 while falg eq 1 doecho shell迷你計算器 echo 請選擇對應的運算數字 echo 1 表示加法 echo 2 表示減法 echo 3 表示乘法 echo 4 表示除法 echo 5 退出計算器!read chec...
shell指令碼實現加減乘除計算器
使用if語句 bin bash 這是乙個計算器 read t 30 p please input the first number num1 read t 30 p please input the second number num2 read t 30 p please input the se...