Math Operators
This shows the addition operator: 5 + 20 = 25
This shows the subtraction operator: 20 - 5 = 15
This shows the multiplication operator: 5 * 20 = 100
This shows the divison operator: 20 / 5 = 4
Pre-increment: 5 by 1
6
Post-increment: 6 by 1
6
7
Pre-decrement: 7 by 1
6
Post-decrement: 6 by 1
6
5
These are the math operators.
addition add the numbers together
subtractions subtracts the numbers to store in var
multiplication mulitplies them to store in var
divison divides them to store in var
pre increment increments the number by one before posting, post does it after print and.
Same with decrement but it makes it go down by 1 instead.