/************************************************************************* * Name: * Login: * Precept: * * Description: Reads in 3 integer values from the command line and prints * them in ascending order. * * Hint: Don't use conditionals for this; use Math.min() and Math.max(). * * Example: * % java ThreeSort 17 50 33 * 17 * 33 * 50 (This is Book Exercise 1.2.34.) *************************************************************************/ public class ThreeSort { public static void main(String[] args) { // command-line input // compute the order // output in ascending order } }