Java program to find Maximum of 2 nos

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

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