Java Integer Mod mod(int a, int b)

Here you can find the source of mod(int a, int b)

Description

mod

License

Apache License

Declaration

static int mod(int a, int b) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    static int mod(int a, int b) {
        return a % b;
    }/*from w w  w.j av  a 2 s. c o m*/
}

Related

  1. mod(final int dividend, final int divisor)
  2. mod(final int dividend, final int divisor)
  3. mod(final int n, final int N)
  4. mod(int a, int b)
  5. Mod(int a, int b)
  6. mod(int a, int b)
  7. mod(int a, int n)
  8. mod(int a, int n)
  9. mod(int divisor, int dividend)