Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 690 Bytes

File metadata and controls

30 lines (20 loc) · 690 Bytes

github-final-project

Simple Interest Calculator

This project is created as part of the GitHub Final Project assignment.

Purpose

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.

How to Use

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

Example

Principal: 1000
Rate: 5
Time: 2

Output:
Simple Interest = 100

Minor typo fix Another minor fix