Modulo / divisibility check
Calculates the remainder of integer division and checks divisibility. Useful for even/odd checks, intervals, and batch splitting.
Calculates the remainder of integer division and checks divisibility. Useful for even/odd checks, intervals, and batch splitting.
What input parameters does the robot accept?
| Parameter | Type | Required? | Default |
|---|---|---|---|
| Dividend | string | yes | |
| Divisor | string | yes |
What does the robot return?
| Parameter | Type |
|---|---|
| Division remainder | int |
| Quotient (integer part) | int |
| Divisible without remainder (Y/N) | string |