Computer Science, asked by sb22467, 7 months ago

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 Falcon06
0

Answer:

The output will be 46 of the else part because 10-3 != 8

Similar questions