public class XORExerciseExample2
{
public static void main(String args[])
{
// XORExerciseExample2
int x = 0;
int y = 10;
while ((x < 5) ^ (y < 5))
{
System.out.println("x = " + x);
System.out.println("y = " + y);
x++;
y = y - 5;
}
}
}
x = 0 y = 10 x = 1 y = 5
--- Output Ends ---
- javac XORExerciseExample2.java
- java XORExerciseExample2