Sum of two numbers

Sum of two numbers

In this program we use two variables which have
already contain values and sum of these
numbers store in third variable.

class Addition {
    public static void main(String[] args) {
        int a = 10, b = 20, c = 0;
        c = a b;
        System.out.println("Sum: " c);
    }
}

Output:
Sum: 30

Popular posts from this blog

Termux Login Script

Sudo - SuperUser Access TERMUX

GoldenEye HTTP DoS Test Tool