package org.kodejava.lang;
public class OrDemo {
public static void main(String[] args) {
int numberA = 16;
int numberB = 4;
// Operator "|" is used for doing bitwise OR operation
int result = numberA | numberB;
System.out.println(numberA + " | " + numberB + " = " + result);
// Print the result in binary format
System.out.println(Integer.toBinaryString(numberA) +
" | " + Integer.toBinaryString(numberB) +
" = " + Integer.toBinaryString(result));
}
}
The result of the code snippet:
16 | 4 = 20
10000 | 100 = 10100
Latest posts by Wayan (see all)
- How do I build simple search page using ZK and Spring Boot? - March 8, 2023
- How do I calculate days between two dates excluding weekends and holidays? - January 12, 2023
- How do I discover the quarter of a given date? - January 11, 2023