You are viewing a single comment's thread. Return to all comments →
# !/bin/bash read x read y echo $((x+y)) echo $((x-y)) echo $((x*y)) if [[ $y -ne 0 ]]; then echo $((x/y)) fi;
Seems like cookies are disabled on this browser, please enable them to open this website
The World of Numbers
You are viewing a single comment's thread. Return to all comments →