Here you can find the source of Max(float a, float b)
public static float Max(float a, float b)
//package com.java2s; //License from project: Apache License public class Main { public static float Max(float a, float b) { return ((a) < (b) ? (b) : (a)); }//from w ww. java 2 s. c o m public static int max(int a, int b) { if (a > b) { return a; } return b; } }