/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author felix
 */
public class mayor_menor {

    static public void main (String args[])
    {
      int a, b, c, d;

      a = 4; b = 2; c = 3;
      d = (a > b) ?  a : b;
      d = (d > c) ?  d : c;

      System.out.println("el Mayor es " + d);


      // otra forma

      if(a> b) d = a;
      else d = b;
      if(d< c) d = c;

      System.out.println("el Mayor es " + d);

    }
}
