Here you can find the source of max(int i, int j)
public static int max(int i, int j)
//package com.java2s; public class Main { public static int max(int i, int j) { if (j > i) { return j; } else {/*w w w . ja v a 2s . c o m*/ return i; } } }