Get Largest Among Different Numbers using Java

Here is the code that will help to get the largest number. 
  1. import java.util.Scanner;  
  2. class BigNum  
  3. {  
  4.    public static void main(String args[])  
  5.    {  
  6.       int a, b, c, d;  
  7.       System.out.println("To get the largest among different numbers: ");  
  8.       System.out.println();  
  9.       System.out.println("Enter three integers: ");  
  10.       Scanner in = new Scanner(System.in);  
  11.       a = in.nextInt();  
  12.       b = in.nextInt();  
  13.       c = in.nextInt();  
  14.       d = in.nextInt();  
  15.       if ( a > b && a > c && a > d)  
  16.       System.out.println("1st number is largest.");  
  17.       else if ( b > a && b > c && b > d)  
  18.       System.out.println("2nd number is largest.");  
  19.       else if ( c > a && c > b && c > d)  
  20.       System.out.println("3rd number is largest.");  
  21.       else if ( d > a && d > b && d > c)  
  22.       System.out.println("4th number is largest.");  
  23.       else  
  24.       System.out.println("Entered numbers are not different.");  
  25.    }  
  26. }  
 Thank you, keep learning and sharing.