الرجوع
تسجيل الدخول

What is printed when the following code executes with x equals 4 and y equals 3?
if (!(x > 3 || y > 2))
    System.out.println("first case");
else
    System.out.println("second case");