I\'m looking for a method that can round a number up to the nearest multiple of another. This is similar Quantization.
Eg. If I want to round 81 up to the
Yes, integer arithmetic.
To round m up to the next multiple of n, use ((m+n-1)/n)*n