Java Number Max Value max3(int first, int second, int third)

Here you can find the source of max3(int first, int second, int third)

Description

max

License

Apache License

Declaration

public static int max3(int first, int second, int third) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static int max3(int first, int second, int third) {
        return Math.max(Math.max(first, second), third);
    }//  ww w  .j  a v  a2  s.  c  om
}

Related

  1. max2(double a, double b)
  2. max2(int a, int b)
  3. max255(float val)
  4. max3(double a, double b, double c)
  5. max3(int a, int b, int c)
  6. MAX3(int x, int y, int z)
  7. max4(double v1, double v2, double v3, double v4)
  8. max8(double v1, double v2, double v3, double v4, double v5, double v6, double v7, double v8)
  9. maxDelta(float newValue, float oldValue, float maxChange)