Arithmetic Operators Usage
Process
Start: Select Arithmetic Operator
Choose Operation Type
Negation/Absolute Modulus (Mod) Power (Pow)
Factorial (Fac)
Basic Arithmetic
Division
Select Specific Operation Select Division Type Select Basic Operation
Addition (A+B) Multiplication (A×B)
Integer Division (A\B)
Division (A/B)
Negative (Neg) Absolute (Abs)
Subtraction (A-B)
Convert number to its opposite sign Return positive distance from zero Calculate product of integers from 1 to n Return integer part of quotient Divide and return remainder only Raise base to exponent
Perform precise real number division Sum two numbers Subtract B from A Multiply two numbers
e.g., 5 → -5 e.g., |-7| = 7 e.g., 5! = 120 (discard decimal) e.g., 7 mod 3 = 1 e.g., 3³ = 27
End: Result Obtained