This repository contains the work completed as part of the Introduction to Git and GitHub course by IBM Developer Skills Network.
This project includes a Simple Interest Calculator — a Bash script that computes simple interest based on user input.
Simple Interest (SI) = (Principal × Rate × Time) / 100
- Principal (P) — The initial amount of money invested or borrowed
- Rate of Interest (R) — The annual interest rate (in percentage)
- Time Period (T) — The duration of the investment or loan (in years)
- Simple Interest — The interest earned or paid
- Total Amount — Principal + Simple Interest
bash simple-interest.shEnter Principal amount (P): 1000
Enter Rate of Interest (R) in % per annum: 5
Enter Time Period (T) in years: 2
Simple Interest : 100.00
Total Amount : 1100.00
├── simple-interest.sh # Bash script for Simple Interest Calculator
├── README.md # Project documentation
├── LICENSE # Apache 2.0 License
├── CONTRIBUTING.md # Contribution guidelines
└── CODE_OF_CONDUCT.md # Code of conduct
- Git installed on your machine
- Bash shell (Linux/Mac/WSL)
git clone https://github.com/adarshkumar23/I_Solved_It-FinAgentGuard.git
cd I_Solved_It-FinAgentGuardAll contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome. Please read CONTRIBUTING.md for details.
This project is licensed under the Apache License 2.0 — see the LICENSE file for details.
Adarsh Kumar — @adarshkumar23