Java Integer Mod mod(int divisor, int dividend)

Here you can find the source of mod(int divisor, int dividend)

Description

mod

License

Open Source License

Declaration

static int mod(int divisor, int dividend) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    static int mod(int divisor, int dividend) {
        return (((divisor % dividend) + dividend) % dividend);
    }/* ww w  . ja  va2 s .  co  m*/
}

Related

  1. Mod(int a, int b)
  2. mod(int a, int b)
  3. mod(int a, int b)
  4. mod(int a, int n)
  5. mod(int a, int n)
  6. mod(int hash, int size)
  7. mod(int i, int n)
  8. mod(int num, int div)
  9. mod(int v, int m)