This project is a calculator that computes the simple interest based on the principal amount, annual rate of interest, and time period in years.
- p: Principal amount
- t: Time period in years
- r: Annual rate of interest (as a percentage)
-
Simple Interest: Calculated using the formula:
[ \text{Simple Interest} = \frac{p \times r \times t}{100} ]
- Input the values for principal, time period, and annual rate of interest.
- Calculate the simple interest using the formula provided.
- Output the calculated simple interest.
For example, if:
- Principal (p) = 1000
- Time (t) = 3 years
- Rate (r) = 5%
The output will be: Simple Interest = 1000 * 5 * 3 / 100 = 150
This simple interest calculator is a straightforward tool that allows users to easily compute the interest on a given principal amount over a specified time period at a given interest rate.