Arithmetic Operators operate on one or more numeric operands and returns a numeric output.
Following are the arithmetic operators.
Operator Description Syntax Example Output
+ Addition expression1 + expression2 20 + 10 30
- Subtraction expression1 - expression2 20 - 10 10
* Multiplication expression1 * expression2 20 * 10 200
/ Division. Expression on the left is the dividend and expression on the right is the divisor. dividend / divisor 20 / 10 2
% Modulo. Expression on the left is the dividend and expression on the right is the divisor. Output is the remainder of the division. dividend % divisor 20 % 8 4