Starting from:

$29.99

COP3502 Lab 02: Scientific Calculator Solved

Overview
In this project students will build a scientific calculator on the command line. The program will display a menu of options which includes several arithmetic operations as well as options to clear the result, display statistics, and exit the program. The project is designed to give students an opportunity to practice looping. Type conversion, and data persistence.

Specification
When the program starts it should display a menu, prompt the user to enter a menu option, and read a value:

Current Result: 0.0

Calculator Menu

---------------

Exit Program
Addition
Subtraction
Multiplication 4. Division
Exponentiation
Logarithm
Display Average
 

Enter Menu Selection: 1

If an option with operands (1-6) is selected, the program should prompt for and read double precision floating point numbers as follows:

Enter first operand: 89.1

Enter second operand: 42

Once the two operands have been read, the result should be calculated and displayed, along with the menu:

Current Result: 131.1

Calculator Menu

---------------



Operational Behavior
This calculator includes multiple behaviors that are unique depending on the input and operation specified; they are detailed in this section.

 

Exponentiation

For exponentiation, the first operand should be used as the base and the second as the exponent, i.e.:

 

If the first operand is 2 and the second is 4…            24 = 16

 

Logarithm

For logarithms, the first operand should be used as the base and the second as the yield, i.e.:

 

If the first operand is 2 and the second is 4…            log24 = 2

 

Displaying the Average

As the program progresses, it should store the total of all results of calculation and the number of calculations. Note that this does not include the starting value of 0! The program should display the average of all calculations as follows:

 

Sum of calculations: 101.3

Number of calculations: 2

Average of calculations: 50.15

 

Note that the average calculation should show a maximum of two decimal places. The program should immediately prompt the user for the next menu option (without redisplaying the menu).

 

If no calculations have been performed, this message should be displayed:

 

Error: no calculations yet to average!

 

Extra Credit
Using Results of Calculation

You can earn 5% extra credit on this project by allowing the user to use the previous result in an operation. To add this feature, allow the user to enter the word “RESULT” in place of an operand; if the user does so, the program should replace this operand with the result of the previous calculation (or zero if this is the first calculation):

 

Enter first operand: 89.1

Enter second operand: RESULT

 

Submissions
NOTE: Your output must match the example output *exactly*. If it does not, you will not receive full credit for your submission!

 

File:                 SciCalculator.java

Method:           Submit on ZyLabs

 

Do not submit any other files!

 

Sample Output
 

Current Result: 0.0

 

Calculator Menu

---------------

Exit Program
Addition
Subtraction
Multiplication 4. Division
Exponentiation
Logarithm
Display Average
 

Enter Menu Selection: 7

 Error: No calculations yet to average!

 

Enter Menu Selection: 1

Enter first operand: 0.5

Enter second operand: -2.5

 

Current Result: -2.0

 

Calculator Menu

---------------

Exit Program
Addition
Subtraction
Multiplication 4. Division
Exponentiation
Logarithm
Display Average
 

Enter Menu Selection: 5

Enter first operand: -2.0               For EC, replace with RESULT

Enter second operand: -2.0

 

Current Result: 0.25

 

Calculator Menu

---------------

Exit Program
Addition
Subtraction
Multiplication 4. Division
Exponentiation
Logarithm
Display Average
Enter Menu Selection: 6

Enter first operand: 2

Enter second operand: 0.5

 

Current Result: -1.0

 

Calculator Menu

---------------

Exit Program
Addition
Subtraction
Multiplication 4. Division
Exponentiation
Logarithm
Display Average
 

Enter Menu Selection: 7

 

Sum of calculations: -2.75

Number of calculations: 3

Average of calculations: -0.92

 

Enter Menu Selection: -10

 Error: Invalid selection!

 

Enter Menu Selection: 0

 Thanks for using this calculator. Goodbye!

 

More products