Here you can find the source of mod(int a, int b)
static int mod(int a, int b)
//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*/ }