public class Output { public static void main(String args[]) { int p = 5; int q = 6; int r = 7; p |= 4; q >>= 1; r <<= 1; p ^= r; System.out.println(p + " " + q + " " + r); } }
Output: 11 3 14
Previous Question Next Question
Your comments will be displayed only after manual approval.