Logo 
Search:

Java Articles

Submit Article
Home » Articles » Java » Homework HelpRSS Feeds

Program to show the use of Bitwise Operator (^) XOR (Exclusive OR)

Posted By: Damon Perez     Category: Java     Views: 3360

A Java Program to show the use of Bitwise Operator (^) XOR (Exclusive OR).

Code for Program to show the use of Bitwise Operator (^) XOR (Exclusive OR) in Java

publicclass JAVA_009
 {

    publicstaticvoid main(String[] args)
    {
       int a=26317;  // 0110011011001101int b=15;     // 0000000000001111int c=(a^b);  // 0110011011000010

       System.out.println("a = 0110011011001101 = " + a);
       System.out.println("b = 0000000000001111 = " + b);
       System.out.println("c = a^b = 0110011011000010 = " + c);
    }
 }
  
Share: 



Damon Perez
Damon Perez author of Program to show the use of Bitwise Operator (^) XOR (Exclusive OR) is from Philadelphia, United States.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!