A demo program for calculating and evaluating your loan using the amortization in java.
The requirements for the project is:
The containing feature are:
- Calculate the monthly payments of your mortgage
- Evaluate if it's favorable based on your gross income
- Calculate the monthly payment of your car loan
- View the balance sheet of your loan
Step 1) Build source files
javac -cp "<lombok_path>" src/main/java/org/keith/core/*.java src/main/java/org/keith/menu/*.java src/main/java/org/keith/menu/enums/*.java src/main/java/org/keith/*.java -d bin
Step 2) Run the program
cd bin
java org.keith.Main
Optionally, you can create an executable JAR file:
cd bin
jar -cmvf ../META-INF/MANIFEST.MF ./loan-cli.jar .
java -jar loan-cli.jar
This project contains MIT license.