Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 1.2 KB

README.md

File metadata and controls

27 lines (21 loc) · 1.2 KB

Lesson 04

Homework

  1. Read CC 12.
  2. Read article entitled 3 Questions That Will Make You A Phenomenal Rubber Duck
  3. Complete the Expression Calculator exercise

Expression Calculator

For this assignment, you will need to implement the functions and logic required to calculate a mathematical expression. After implementing the add, divide, and multiply functions, you will combine these functions to compute the final result.

  1. Update the code in the ExpressionCalculator.java file.
  2. To check your work, you can run the application using the first command below and run the tests using the second one.
./gradlew run --console=plain
./gradlew test
  1. As usual, make sure that you format your code and run the check command before creating your pull request.
./gradlew spotlessApply
./gradlew check
  1. You must only submit changes to the ExpressionCalculator.java file to receive full credit.