This is a Simple and Compound Interest Calculator built with HTML, CSS, and JavaScript.
https://pradeepkumarverma1.github.io/simple-compound-interest-calculator/
- Calculates simple or Compound interest based on user input.
- Change theme colors
The Interest that is charged on the Principal amount every year is called Simple Interest.
The Formula to calculate Simple Interest is:
SI = (P x T x R) / 100
Here:
- ( P ) is the Principal amount,
- ( T ) is the time (No. of years),
- ( R ) is the Rate of Interest (in %).
The Interest that is charged on the Principal amount as well as on the Previous Interest is called Compound Interest.
The Formula to calculate Compound Interest is:
CI = A - P
Here:
- ( A ) is the Amount,
- ( P ) is the Principal.
To calculate the Amount, the formula is:
A = P x [1 + R/100] ^ T
Where:
- ( P ) is the Principal amount,
- ( R ) is the Rate of Interest (in %),
- ( T ) is the time (No. of years).
- Web browser (Chrome, Firefox, Safari, etc.)
-
Clone the repository:
git clone https://github.com/pradeepkumarverma1/simple-compound-interest-calculator.git