Sunday, December 27, 2015

Increment And Decrement Operator

Increment and Decrement Operator:


package javaapplication16;


public class IncrementAndDecrementOPeratorDemo {
    public static void main(String[] args) {
        int a=5;
        int b=3;
        int c;
        int d;
        
        c= ++b;
        d=++a;
        c++;
        
        System.out.println("a = "+a);
        System.out.println("b = "+b);
        System.out.println("c = "+c);
        System.out.println("d= "+d);
    }
}

OUTPUT:
a = 6
b = 4
c = 5
d= 6

0 comments:

Post a Comment