3

bashスクリプトで電卓を作ろうとしています。ユーザーは数値を入力し、加算、減算、乗算、除算のいずれかを選択します。次に、ユーザーは 2 番目の数値を入力し、合計を実行するか、ループで再び加算、減算、乗算、または除算するかを選択できます。

私は今、これについて頭を悩ませることはできません

echo Please enter a number
read number

echo What operation would you like to perform: 1: Add, 2: Subtract, 3: Multiple, 4: Divide
read operation

case $operation in
    1) math='+';;
    2) math='-';;
    3) math='*';;
    4) math='/';;
    *) math='not an option, please select again';;
esac
echo "$number $math"


echo Please enter a number
read number2

echo What operation would you like to perform: 1: Add, 2: Subtract, 3: Multiple, 4: Divide, 5: Equals
read operation2
case $operation2 in
    1)math2='Add';;
    2)math2='Subtract';;
    3)math2='Multiply';;
    4)math2='Divide';;
    5)math2='Equals';;
    *)math2='not an option, please select again';;
esac
echo You have selected $math2

exit 0

これは私がこれまでに行ったことですが、計算機にループバックする方法を理解するのを手伝ってくれる人はいますか?

4

6 に答える 6

5

あまり知られていないシェル組み込みコマンドselectは、この種のメニュー駆動型プログラムに便利です。

#!/bin/bash
while true; do
    read -p "what's the first number? " n1
    read -p "what's the second number? " n2
    PS3="what's the operation? "
    select ans in add subtract multiply divide; do
        case $ans in 
            add) op='+' ; break ;;
            subtract) op='-' ; break ;;
            multiply) op='*' ; break ;;
            divide) op='/' ; break ;;
            *) echo "invalid response" ;;
        esac
    done
    ans=$(echo "$n1 $op $n2" | bc -l)
    printf "%s %s %s = %s\n\n" "$n1" "$op" "$n2" "$ans"
done

サンプル出力

what's the first number? 5
what's the second number? 4
1) add
2) subtract
3) multiply
4) divide
what's the operation? /
invalid response
what's the operation? 4
5 / 4 = 1.25000000000000000000

bash v4 の機能と DRY に夢中になるとしたら、次のようにします。

#!/bin/bash

PS3="what's the operation? "
declare -A op=([add]='+' [subtract]='-' [multiply]='*' [divide]='/')

while true; do
    read -p "what's the first number? " n1
    read -p "what's the second number? " n2
    select ans in "${!op[@]}"; do
        for key in "${!op[@]}"; do
            [[ $REPLY == $key ]] && ans=$REPLY
            [[ $ans == $key ]] && break 2
        done
        echo "invalid response"
    done
    formula="$n1 ${op[$ans]} $n2"
    printf "%s = %s\n\n" "$formula" "$(bc -l <<< "$formula")"
done
于 2013-01-16T04:21:24.140 に答える
2

コードをループにラップする

コードをBash のループ コンストラクトでラップしたいだけで、何か凝ったことをするのではなく CTRL-C を押してループを終了したい場合は、コードを while ループでラップできます。例えば:

while true; do
    : # Your code goes here, inside the loop.
done

無条件exitステートメントをループの本体の外に移動してください。そうしないと、その行に到達するたびにループが終了します。

于 2013-01-16T02:54:58.693 に答える
0

!/ビン/バッシュ

PS3="演算とは? " 宣言 -A op=([加算]='+' [減算]='-' [乗算]='*' [除算]='/')

真の間; do read -p "最初の数字は?" n1 read -p "2 番目の数字は?" n2 select ans in "${!op[@]}"; do for key in "${!op[@]}"; do [[ $REPLY == $key ]] && ans=$REPLY [[ $ans == $key ]] && break 2 done echo "無効な応答" done formula="$n1 ${op[$ans]} $ n2" printf "%s = %s\n\n" "$formula" "$(bc -l <​​<< "$formula")" 完了

于 2013-01-17T14:28:14.223 に答える
0
#calculator

while (true) # while loop 1
do  
echo "enter first no"
read fno
if [ $fno -eq $fno 2>/dev/null ]; # if cond 1 -> checking integer or not
then
c=1
else
echo "please enter an integer"
c=0
fi # end of if 1
if [ $c -eq 1 ]; #if 2
then
break
fi # end of if 2
done # end of whie 1

while(true) #while loop 2
do
echo "enter second no"
read sno
if [ $sno -eq $sno >/dev/null 2>&1 ] # if cond 3 -> checking integer or not
then
c=1
else
echo "please enter an integer"
c=0
fi # end of if 3
if [ $c -eq 1 ] # if cond 4
then
break
fi # end of if 4
done #2

while(true) # while loop 3
do
printf "enter the operation (add,div,mul,sub) of $fno and $sno\n"
read op
count=0
##addition

if [ $op = add ] #if cond 5
then
echo "$fno+$sno is `expr $fno + $sno`"

#multiplication

elif [ $op = mul ]; 
then
echo "$fno*$sno is `expr $fno \* $sno`"

#substraction

elif [ $op = sub ] 
then
while(true) #while loop 3.1
do
printf "what do you want to do??? \n 1. $fno-$sno \n 2. $sno-$fno"
printf "\n press the option you want to perform?(1 or 2)\n"
read opt
if [ $opt = 1 ] #if cond 5.1
then
echo "$fno-$sno is `expr $fno - $sno`"
break
elif [ $opt = 2 ] 
then
echo " $sno-$fno  is `expr $sno - $fno`"
break
else "please enter valid options to proceed(1 or 2)";
clear
fi #end of if 5.1
done  # end of 3.1

#division
elif [ $op = div ]
then
while(true) # whilw loop 3.2
do
printf "what do you want to do??? \n 1. $fno/$sno \n 2. $sno/$fno"
printf "\n press the option you want to perform?(1 or 2)\n"
read opt
if [ $opt = 1 ] #if cond 5.2
then
echo "$fno divided by $sno is  `expr $fno / $sno`"
break
elif [ $opt = 2 ]
then
echo " $sno divided by $fno  is `expr $sno / $fno`"
break
else 
clear
fi #end of if 5.2
done  # end of 3.2
else 
echo "valid option please!!!"
count=1
fi # end of if 5

if [ $count -eq 0 ] #if cond 6
then
echo "Do you want to do more ops"
echo "(y/n)"
read ans
clear
if [ $ans = n ] # if 6.1
then
break
fi # end of if 6.1
fi #end of if 6
done  #end of while 3
于 2017-11-13T10:18:22.770 に答える