Logo 
Search:

Java Articles

Submit Article
Home » Articles » Java » Homework HelpRSS Feeds

Program to show the use of Bitwise Operator (|) OR

Posted By: Bradley Evans     Category: Java     Views: 1386

A Java Program to show the use of Bitwise Operator (|) OR.

Code for Program to show the use of Bitwise Operator (|) OR in Java

publicclass JAVA_008
 {
    publicstaticvoid main(String[] args)
    {
       int a=26317;  // 0110011011001101int b=15;     // 0000000000001111int c=(a|b);  // 0110011011001111

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


Didn't find what you were looking for? Find more on Program to show the use of Bitwise Operator (|) OR Or get search suggestion and latest updates.

Bradley Evans
Bradley Evans author of Program to show the use of Bitwise Operator (|) OR is from London, United Kingdom.
 
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!