Here you can find the source of min(int x, int y)
public static int min(int x, int y)
//package com.java2s; //License from project: Open Source License public class Main { /**/*from ww w .j ava 2 s . c o m*/ * @return the minimum of x and y */ public static int min(int x, int y) { return ((x < y) ? x : y); } }