Java program for assignment operators

 public class Assignment

{

    public static void main(String[] args) 

    {

        int x = 5;

        int y = 10;

        x+=5;

        System.out.println("+= "+x);

        x-=5;

        System.out.println("-= "+x);

        x*=5;

        System.out.println("*= "+x);

        x/=5;

        System.out.println("/= "+x);

        x%=5;

        System.out.println("%= "+x);    

        boolean t = true;

        boolean f = false;

        t|=f;

        System.out.println("|= "+t);

        t^=f;   

        System.out.println("^= "+t);

        t&=f;

        System.out.println("&= "+t);

        x = 5;

        y = 10;

        x&=y;

        System.out.println("&= "+x);

        x|=y;

        System.out.println("|= "+x);

        x^=y;   

        System.out.println("^= "+x);

    }

}



OUTPUT





Comments