Math.php

Addition: Adds two numbers or more to form the results

10 + 5 = 15

Subtraction: Subtracts two numbers or more to form the results

10 - 5 = 5

Division: Divides the first value by the second value

10 / 5 = 2

Multiplication: Multiplies two values

10 * 5 = 50

Modulus: Returns the remainder of the division between two values

10 % 5 = 0

Go Back