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

What is the output of the following code if x = 5;?

int x = 5;
if (x > 5)
    System.out.println("A");
else if (x < 5)
    System.out.println("B");
else
    System.out.println("C");