Program 1
//Find Maximum of 2 nos.
class Maxof2{
public static void main(String args[]){
//taking value as commandline 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);
}
}
Output
D:\javaPrac>java Maxof2 23 45
45 is greater than 23