public class Result { public static void main(String args[]) { int p , q = 1; p = 20; if(p != 20 && p / 0 == 0) System.out.println(q); else System.out.println(++q); } }
Output: 2
Previous Question Next Question
Your comments will be displayed only after manual approval.