Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- echo "Enter The Num 1 :"
- read a
- echo "Enter The Num 2 :"
- read b
- g=$(echo "scale=2; $a + $b"|bc)
- h=$(echo "scale=2; $a * $b"|bc)
- i=$(echo "scale=2; $a - $b"|bc)
- j=$(echo "scale=2; $a / $b"|bc)
- echo "Sub is : "$g
- echo "Mul is : "$h
- echo "Min is : "$i
- echo "Div is : "$jd
Add Comment
Please, Sign In to add comment