Java Number Max Value max3(double a, double b, double c)

Here you can find the source of max3(double a, double b, double c)

Description

max

License

Open Source License

Declaration

public static double max3(double a, double b, double c) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static double max3(double a, double b, double c) {
        return Math.max(a, Math.max(b, c));
    }/*  w w  w . ja  v  a  2 s. c o  m*/
}

Related

  1. max(T v1, T v2)
  2. max(T v1, T v2, int nullSupport)
  3. max2(double a, double b)
  4. max2(int a, int b)
  5. max255(float val)
  6. max3(int a, int b, int c)
  7. max3(int first, int second, int third)
  8. MAX3(int x, int y, int z)
  9. max4(double v1, double v2, double v3, double v4)