Basic Operators
You can apply mathematic operations to numbers using some basic operators like:
Addition:
c = a + bSubtraction:
c = a - bMultiplication:
c = a * bDivision:
c = a / b
You can use parentheses just like in math to separate and group expressions: c = (a / b) + d
Last updated