Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 559 Bytes

README.md

File metadata and controls

26 lines (23 loc) · 559 Bytes

Math-Box

Description

To help in performing most of the basic math calculations and use some math formulae.

Version

Version: 0.0.1

Functions

The available in Math-box in version 0.0.1 is:

  • Heron's Formula for area of triangle.
  • Area of Circle.
  • Simple & Compound Interest.
  • Area of a rectangle.

Usage

  1. Area:
Area(side a, side b, side c); //Heron's Formula
Area(l,b); //Area of rectangle
Area(radius); //Area of Circle
  1. Interest:
SimpleI(p,r,t); //Simple Interest
CompoundI(p,r,t); //Compound Interest