Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 566 Bytes

File metadata and controls

11 lines (9 loc) · 566 Bytes

Java Scientific Calculator Engine

Description

This project provides a class that contains methods for basic arithmetic and some trigonometric functions. The class utilizes Java's BigDecimal class and rounds to a precision of 5. Also, there is a test program supplied that provides an example CLI use case.

Objectives

  1. Practice accounting for round off precision errors within Java by utilizing Java's BigDecimal class.
  2. Demonstrate knowledge of OOP.
  3. Provide an example of a CLI use case.