Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

modulus of negative numbers

int modulo(int x,int N){
    return (x % N + N) %N;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #modulus #negative #numbers
ADD COMMENT
Topic
Name
9+6 =