package org.kodejava.lang;
public class XorDemo {
public static void main(String[] args) {
int numberA = 16;
int numberB = 32;
// Operator ^ is used for doing bitwise exclusive 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 program prints the following output:
16 ^ 32 = 48
10000 ^ 100000 = 110000
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024