Give output of the code snippet :- int m = 10, n = 8; if ((m-3) = = n) System.out.println( Math.pow (m,2)); else System. out.println ( ( m*m) – Math.pow(n,2));
Answers
Answered by
0
Answer:
The output will be 46 of the else part because 10-3 != 8
Similar questions