Header Ad

Java program to take command line arguments

In this tutorial, we are going to write a Java program to take input values to command-line arguments in Java Programming with practical program code and step-by-step full complete explanation.

Java program to take command line arguments


Java program

 
class Main
{
    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);
    }
}


Output

 
5 10
10 is greater than 5


Post a Comment

0 Comments