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