Java Number Max Value max(float a, float b, float c)

Here you can find the source of max(float a, float b, float c)

Description

Returns the maximum value of three floats.

License

Open Source License

Parameter

Parameter Description
a a parameter
b a parameter
c a parameter

Return

max val

Declaration

public static float max(float a, float b, float c) 

Method Source Code

//package com.java2s;
/*//from  w  w w  . j  av  a2  s.c om
 *   __               .__       .__  ._____.           
 * _/  |_  _______  __|__| ____ |  | |__\_ |__   ______
 * \   __\/  _ \  \/  /  |/ ___\|  | |  || __ \ /  ___/
 *  |  | (  <_> >    <|  \  \___|  |_|  || \_\ \\___ \ 
 *  |__|  \____/__/\_ \__|\___  >____/__||___  /____  >
 *                   \/       \/             \/     \/ 
 *
 * Copyright (c) 2006-2011 Karsten Schmidt
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * http://creativecommons.org/licenses/LGPL/2.1/
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

public class Main {
    public static double max(double a, double b) {
        return a > b ? a : b;
    }

    public static double max(double a, double b, double c) {
        return (a > b) ? ((a > c) ? a : c) : ((b > c) ? b : c);
    }

    public static double max(double[] values) {
        return max(values[0], values[1], values[2]);
    }

    /**
     * Returns the maximum value of three floats.
     * 
     * @param a
     * @param b
     * @param c
     * @return max val
     */
    public static float max(float a, float b, float c) {
        return (a > b) ? ((a > c) ? a : c) : ((b > c) ? b : c);
    }

    public static float max(float[] values) {
        return max(values[0], values[1], values[2]);
    }

    public static int max(int a, int b) {
        return a > b ? a : b;
    }

    /**
     * Returns the maximum value of three ints.
     * 
     * @param a
     * @param b
     * @param c
     * @return max val
     */
    public static int max(int a, int b, int c) {
        return (a > b) ? ((a > c) ? a : c) : ((b > c) ? b : c);
    }

    public static int max(int[] values) {
        return max(values[0], values[1], values[2]);
    }
}

Related

  1. max(final String string1, final String string2)
  2. Max(float a, float b)
  3. max(float a, float b)
  4. max(float a, float b)
  5. max(float a, float b)
  6. max(float a, float b, float c, float d, float e)
  7. max(float dirOffset, float min, float max)
  8. max(float value1, float value2)
  9. max(float value1, float value2)