Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

wrapper classes in java ebhor.com

public class CommandLineArguments {
    public static void main(String[] args) {
        int a = Integer.parseInt(args[0]);
        int b = Integer.parseInt(args[1]);
        int sum = a + b;
        System.out.println("Sum is " + sum);
    }
}
Source by www.ebhor.com #
 
PREVIOUS NEXT
Tagged: #wrapper #classes #java
ADD COMMENT
Topic
Name
5+6 =