Question: Write a method that computes the value of an arithmetic expression. The operator string should be one of , or / ) .
Write a method that computes the value of an arithmetic expression. The operator string should be one of or The method should throw an IllegalArgumentException otherwise. Also throw an IllegalArgumentException if the operator is and the second argument is zero.
ArithmeticTester.java
public class Arithmetic
Computes the value of an arithmetic expression
@param value the first operand
@param operator a string that should contain an operator or
@param value the second operand
@return the result of the operation
Your code goes here Your code goes here return Your code goes here ;
else if operatorequals
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
