The Divide action divides a dividend by a nonzero divisor. It can return a
decimal quotient or a whole-number quotient with a remainder.
Outputs
Decimal division
Integer division
With Dividend set to 17 and Divisor set to 5, Quotient is
3.4.
With the same inputs, Quotient is 3 and Remainder is 2.
The quotient is rounded down with floor, so negative inputs can differ
from truncation toward zero. For example, -17 ÷ 5 produces a quotient of
-4 and a remainder of -2.
Division by zero is rejected before the calculation runs.