public class Result { public static void main(String args[]) { int p = 10; int q = 20; first: { second: { third: { if (p == q >> 4) break second; } System.out.println(p); } System.out.println(q); } } }
Ans: 10 20
Previous Question Next Question
Your comments will be displayed only after manual approval.