Stephen P 41559859b8 read me | пре 6 година | |
---|---|---|
src | пре 6 година | |
.gitignore | пре 6 година | |
README.md | пре 6 година | |
pom.xml | пре 6 година |
In this project you will build a small app to function as a calculator. This app will be built in Java, and will use the topics and techniques discussed during the week.
You should work on this project in your own repository. Click the fork
button in the top right corner to create a copy of this repository on your github account. You can go through the GitHub forking tutorial if you need additional practice with this.
All features must be tested. Tests must include normal behavior, and any possible error situations. Tests must have descriptive names and should be independent of each other (running or not running one test should not influence the behavior of any other test).
You must produce UML diagrams for your program. All classes (excluding test classes) must be included in the UML class diagrams.
All calculators should have the following features:
Err
if an error occurs (eg: Division by zero) *Each operation should automatically update the display
In addition to the Core and Scientific features, you are required to create at least two of your own features for the calculator. They can be any two features that are not already covered and that you can implement as you see fit. These features must be properly tested.
The following functions should take the displayed value (x) and updated it according to the given formula: (this may not be an exhaustive list)
square()
: x2squareRoot()
: √xinverse()
: 1/xswitchSign()
: -xCompleted projects should be submitted by submitting a pull request against the original repository. All work should be done in your own repository.