Question
Write a shell script calculator.sh that performs basic calculator functions such as addition (+), subtraction (-), multiplication (x) and division (/). The program takes as
Write a shell script calculator.sh that performs basic calculator functions such as addition (+), subtraction (-), multiplication (x) and division (/). The program takes as parameters An integer value for the left operand. A character that represents the type of operation to be performed, identified by one of the characters (+, -, x, /) respectively. An integer value for the right operand. and outputs the result of the operation as an integer. If the requested operation would require a division-by-zero, your program should print an error message Division-by-zero Error! and not a result.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started