Here you can find the source of max(float... fs)
public static float max(float... fs)
//package com.java2s; //License from project: Open Source License public class Main { public static float max(float... fs) { float result = Float.NEGATIVE_INFINITY; for (float f : fs) result = f > result ? f : result; return result; }/* w w w. j ava2s .c om*/ }