Java Integer Mod mod(final int dividend, final int divisor)

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

Description

mod

License

Open Source License

Declaration

public static int mod(final int dividend, final int divisor) 

Method Source Code

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

public class Main {
    public static int mod(final int dividend, final int divisor) {
        return dividend % divisor;
    }//from   ww w. ja  va2 s. c o  m
}

Related

  1. mod(final int dividend, final int divisor)
  2. mod(final int n, final int N)
  3. mod(int a, int b)
  4. Mod(int a, int b)