Java Number Min Value min(int x, int x2, int x3)

Here you can find the source of min(int x, int x2, int x3)

Description

min

License

Open Source License

Declaration

public static int min(int x, int x2, int x3) 

Method Source Code

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

public class Main {
    public static int min(int x, int x2, int x3) {
        return x < x2 ? (x < x3 ? x : x3) : (x2 < x3 ? x2 : x3);
    }//from   w w w.j  a  va  2 s .  c o m
}

Related

  1. min(int int1, int int2)
  2. min(int num1, int num2, int num3)
  3. min(int number1, int number2)
  4. min(int one, int two, int three)
  5. min(int value, int min)
  6. min(int x, int y)
  7. min(int x, int y)
  8. min(Integer a, Integer b)
  9. min(Integer i1, Integer i2)