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

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

int x = 5;
if x < 10
    System.out.print("A");
else if x < 20
    System.out.print("B");
else
    System.out.print("C");