Sum of two numbers by receiving value from keyboard
In this program we use two variables which receive value from keyboard and add these valuse and sum of these numbers are store in third variable.
import java.util.Scanner;
class Addition {
public static void main(String[] args) {
int a, b, c = 0;
Scanner s = new Scanner(System.in);
System.out.println("Enter any two numbers :");
a = s.nextInt();
b = s.nextInt();
c = a + b;
System.out.println("Sum: " c);
}
}
Output:
Enter any two numbers :
10
20
Sum: 30