This project is created as part of the GitHub Final Project assignment.
The purpose of this project is to demonstrate GitHub concepts such as repositories, branches, commits, pull requests, and merges using a simple interest calculator example.
Run the shell script simple-interest.sh and enter the following values when prompted:
- Principal
- Rate of interest
- Time period
The script calculates simple interest using the formula:
Simple Interest = (Principal × Rate × Time) / 100
Principal: 1000
Rate: 5
Time: 2
Output:
Simple Interest = 100
Minor typo fix Another minor fix