Java program to find Minimum of 2 nos. using conditional operator

1
2
3
4
5
6
7
8
9
10
class Minof2{
	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");
	}
}
surajk

2 thoughts on “Java program to find Minimum of 2 nos. using conditional operator

Leave a Reply

Your email address will not be published. Required fields are marked *

Get the latest updates on your inbox

Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.

    StudentProjects.in