Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 634 Bytes

File metadata and controls

17 lines (12 loc) · 634 Bytes

Simple Interest Calculator

A simple Bash script to calculate simple interest based on the principal amount, annual rate of interest, and time period in years. This repository was created as part of the Introduction to Git and GitHub course.

Description

This project provides a straightforward calculator that computes simple interest using the standard mathematical formula.

Formula

Simple Interest = p * t * r

Inputs

  • p: Principal amount (the initial money)
  • t: Time period in years
  • r: Annual rate of interest

Output

The script outputs the calculated simple interest based on the provided inputs.