Here you can find the source of max(int i, int j, int k)
public static int max(int i, int j, int k)
//package com.java2s; //License from project: Open Source License public class Main { public static int max(int i, int j) { return (i < j ? j : i); }/*from www .j a v a2s.c o m*/ public static int max(int i, int j, int k) { return max(max(i, j), k); } }