Thursday, 5 December 2013

Unknown

To Find Maximum of Two Numbers.

/*
 To Find Maximum of 2 Numbers using if else
 */

class Maxoftwo {

    public static void main(String args[]) {
//taking value as command line argument.
//Converting String format to Integer value
        int i = Integer.parseInt(args[0]);
        int j = Integer.parseInt(args[1]);
        if (i > j) {
            System.out.println(i + " is greater than " + j);
        } else {
            System.out.println(j + " is greater than " + i);
        }
    }
}

Unknown

About Blog No Baap -

Since 2016 BlogNoBaap has been bringing you the very best in all types of web resources. Posted daily, and delivered straight to your inbox each morning.

Subscribe to this Blog via Email :