File Based Calc

30.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

5/5 - (2 votes)

This week we will write modify the memory calculator from 06. Sixth Assignment – Memory Calculator to be able to save all of the calculations done to a file. There are multiple ways to do this, but I suggest creating an ArrayList of String objects. Each time the user performs an operation (add, subtract, multiply, divide, or clear), add a new String. For instance, if the current value is 6 and the user chooses to add 2, you would create a new String “6 + 2 = 8” and add that String to the ArrayList. You will also need to add a new “Save” item to the menu. When the user chooses this option, you should call a method that displays a JFileChooser dialog to the user, allow them to select where to save the data, and then write all of the strings from the ArrayList to that file. Be sure to handle exceptions gracefully.

Sample output:

The current value is 0.0

Menu

  1. Add
  2. Subtract
  3. Multiply
  4. Divide
  5. Clear
  6. Save
  7. Quit

What would you like to do? 1

What is the second number? 5

The current value is 5.0

 

Menu

  1. Add
  2. Subtract
  3. Multiply
  4. Divide
  5. Clear
  6. Save
  7. Quit

What would you like to do? 2

What is the second number? 3

The current value is 2.0

 

Menu

  1. Add
  2. Subtract
  3. Multiply
  4. Divide
  5. Clear
  6. Save
  7. Quit

What would you like to do? 3

What is the second number? 5

The current value is 10.0

 

 

Menu

  1. Add
  2. Subtract
  3. Multiply
  4. Divide
  5. Clear
  6. Save
  7. Quit

What would you like to do? 4

What is the second number? 0

The current value is NaN

 

Menu

  1. Add
  2. Subtract
  3. Multiply
  4. Divide
  5. Clear
  6. Save
  7. Quit

What would you like to do? 5

The current value is 0.0

 

Menu

  1. Add
  2. Subtract
  3. Multiply
  4. Divide
  5. Clear
  6. Save
  7. Quit

What would you like to do? 6

The current value is 0.0

 

Menu

  1. Add
  2. Subtract
  3. Multiply
  4. Divide
  5. Clear
  6. Save
  7. Quit

What would you like to do? 7

Goodbye!

 

The data in the file should look like this:

Initial value is 0

0.0 + 5.0 = 5.0

5.0 – 3.0 = 2.0

2.0 * 5.0 = 10.0

10.0 / 0.0 = NaN

Cleared

 

You will be graded according to the following rubric:

  • A save option has been added to the menu: 1 point
  • The save option calls a method that displays a JFileChooser dialog and allows the user to select a file: 2 points
  • The save method writes to the selected file: 1 point
  • The information written to the selected file is correct: 2 points
  • Exceptions are handled gracefully (i.e. nice error messages are displayed to the user rather than the stack trace): 1 point
  • Your program compiles: 1point
  • Your program runs: 1 point
  • You follow standard coding conventions (e.g. variable names, indentation, comments, etc.): 1 point
  • Note: If your program does not compile, you will receive a score of 0 on the entire assignment
  • Note: If you program compiles but does not run, you will receive a score of 0 on the entire assignment
  • Note: I your Eclipse project is not exported and uploaded to the eLearn drop box correctly, you will receive a score of 0 on the entire assignment
  • FileBasedCalc.zip