Here you can find the source of max3(int first, int second, int third)
public static int max3(int first, int second, int third)
//package com.java2s; //License from project: Apache License public class Main { public static int max3(int first, int second, int third) { return Math.max(Math.max(first, second), third); }// ww w .j a v a2 s. c om }