wrapper classes in java ebhor com

Solutions on MaxInterview for wrapper classes in java ebhor com by the best coders in the world

showing results for - "wrapper classes in java ebhor com"
Adele
20 Nov 2016
1public class CommandLineArguments {
2    public static void main(String[] args) {
3        int a = Integer.parseInt(args[0]);
4        int b = Integer.parseInt(args[1]);
5        int sum = a + b;
6        System.out.println("Sum is " + sum);
7    }
8}
9