add 2 numbers. Use Integer.parseInt to convert the value in integer. By default it will consider the value as string.
public class AddNumbers{
public static void main(String[] args) {
System.out.println("Addition of two numbers!");
int a = Integer.parseInt(args[0]);
int b = Integer.parseInt(args[1]);
int sum = a + b;
System.out.println("Sum: " + sum);
}
}
A very simple example to Monday, February 25, 2008
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment