public class XORExample
{
public static void main(String args[])
{
// XORExample
boolean x = true;
boolean y = false;
boolean z = x ^ y;
System.out.println(z);
}
}
true
--- Output Ends ---
- javac XORExample.java
- java XORExample