Java Number Max Value max(int i, int j)

Here you can find the source of max(int i, int j)

Description

max

License

Open Source License

Declaration

public static int max(int i, int j) 

Method Source Code

//package com.java2s;

public class Main {
    public static int max(int i, int j) {
        if (j > i) {
            return j;
        } else {/*w  w w .  ja v  a  2s . c o  m*/
            return i;
        }
    }
}

Related

  1. max(int a, int b, int c)
  2. max(int a, int b, int c)
  3. max(int a, int b, int c)
  4. max(int a, int b, int c, int d)
  5. max(int a, int b, int c, int d)
  6. max(int i, int j)
  7. max(int i, int j, int k)
  8. max(int idx, int orderFrom, int orderTo)
  9. max(int x, int x2, int x3)