Status
Tech review

Style guide




Short descriptionReturns dividend - divisor * n, where n is the closest integer to dividend/divisor.
Output

Available since




This function returns dividend - divisor * n, where n is the closest integer to dividend/divisor.

Check the function round(number) to learn more about the closes integer.


The divisor cannot be equal to 0.


 remainder(number dividend, number divisor) #Output: Number



Parser expressionDescription


remainder(3,4)


This example returns -1



3-4*(0.75) = 3-4*1= -1






Parameters used in this function

ParameterInput (data type)Description
x

Any given number.



This function returns a