Here you can find the source of maximum(float first, float second)
public static float maximum(float first, float second)
//package com.java2s; public class Main { public static float maximum(float first, float second) { if (first < second) return second; else/*from w ww . j a va2 s . com*/ return first; } }