Programming Reference / Math / Get Two Item Arithmetic
A and B can be a Value or a Variable
Available Operations
Operation | Description | Example |
---|---|---|
+ | ADD (A + B) | A = 48 and B = 35 then A + B = 83 |
– | SUBTRACT (A – B) | A = 48 and B = 35 then A – B = 13 |
* | MULITIPLY (A x B) | A = 7 and B = 5 then A x B = 35 |
÷ | DIVIDE (A ÷ B) | A = 35 and B = 5 then A / B = 7 |
% | MODULUS (A mod B) | A = 15 and B = 4 then A mod B = 3 |