health

Technology

business posts

Powered by Blogger.

Total Pageviews

Name

your name

Email *

Your Email

Message *

your message

Followers

Translate

Pages

Pages

To Find Minimum of Two Numbers using conditional operator

/*
 To find minimum of 2 Numbers using ternary operator
 */

class Minoftwo {

    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]);
        int result = (i < j) ? i : j;
        System.out.println(result + " is a minimum value");
    }
}

No comments: