#!/bin/bash
function tool_menu()
{
echo "****************************************************"
echo "* *"
echo "* calculation tools *"
echo "* *"
echo "****************************************************"
}
function menu_choice()
{
echo "A: Add two num."
echo "B: Minus two num."
echo "C: Multiply two num."
echo "D:Divide two num."
echo "Q: Close this function."
echo "Please input your chiose:"
}
function add_num()
{
echo "please inut your first num:"
read first_num
echo "please inut your second num:"
read second_num
let add=$first_num+$second_num
echo "$first_num+$second_num=$add"
return 0
}
function minus_num()
{
echo "please inut your first num:"
read first_num
echo "please inut your second num:"
read second_num
let minus=$first_num-$second_num
echo "$first_num-$second_num=$minus"
return 0
}
function multiply_num()
{
echo "please inut your first num:"
read first_num
echo "please inut your second num:"
read second_num
let multiply=$first_num*$second_num
echo "$first_num*$second_num=$multiply"
return 0
}
function divide_num()
{
echo "please inut your first num:"
read first_num
echo "please inut your second num:"
read second_num
let divide=$first_num/$second_num
echo "$first_num/$second_num=$divide"
return 0
}
function main()
{
clear
tool_menu
while :
do
menu_choice
read menu_choice
case $menu_choice in
A|a) add_num ;;
B|b) minus_num ;;
C|c) multiply_num ;;
D|d) divide_num ;;
Q|q) break;;
*) echo "Input error,please try agin.";;
esac
done
}
main
exit 0
站在用戶的角度思考問(wèn)題,與客戶深入溝通,找到鐵西網(wǎng)站設(shè)計(jì)與鐵西網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:做網(wǎng)站、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、申請(qǐng)域名、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋鐵西地區(qū)。
模板
#!/bin/bash
function tool_menu()
{
echo "****************************************************"
echo "* *"
echo "* calculation tools *"
echo "* *"
echo "****************************************************"
}
function menu_choice()
{
echo "A: Add two num."
echo "B: Minus two num."
echo "C: Multiply two num."
echo "D:Divide two num."
echo "Q: Close this function."
echo "Please input your chiose:"
}
function add_num()
{
echo "add."
}
function minus_num()
{
echo "minus."
}
function multiply_num()
{
echo "multiply."
}
function divide_num()
{
echo "divide."
}
function main()
{
clear 模板
tool_menu
while :
do
menu_choice
read menu_choice
case $menu_choice in
A|a) add_num ;;
B|b) minus_num ;;
C|c) multiply_num ;;
D|d) divide_num ;;
Q|q) break;;
*) echo "Input error,please try agin.";;
esac
done
}
main
exit 0