Question: Description: Based on Chapter 6, programming project 1 Hewlett-Packard has a tradition of creating stack-based calculators. Rather than using standard algebraic notation ( 1 +

Description:

Based on Chapter 6, programming project 1

Hewlett-Packard has a tradition of creating stack-based calculators. Rather than using standard algebraic notation ( 1 + 1 = ), the user would enter the values, then the operator. The calculator had an enter key to push each value onto a stack, then pop the stack when an operation key (e.g. + or -) was pressed.

Assignment:

Create aCalculatorclass that implements the providedStackCalculatorinterface

Constructor: + Calculator() Precondition:none Postcondition: a new calculator with an empty number stack

Methods: + public void enter(String entry) Precondition: entry is either a double value (operand) a recognized operator [ +, -, *, /] Postcondition: if the entry is a double, the value is pushed onto the calculators number stack. If an operator, the top two values are popped from the stack, the operation performed, and the result pushed onto the stack. Note: the second operand is popped first.

+ double peek() Precondition: number stack is not empty, otherwise throws EmptyStackException Looks at the number at the top of this stack without removing it from the stack. + double pop() Precondition: number stack is not empty, otherwise throws EmptyStackException Removes the number at the top of this stack and returns that value. + void clear() Removes all numbers from this stack. The stack will be empty after this call returns + boolean isEmpty Tests If the number stack of this calculator is empty + int size() Returns the number of values in this calculators number stack.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!