الرجوع
تسجيل الدخول
أنت تتصفح نسخة مؤرشفة من الموقع اضغط للانتقال إلى الموقع الجديد بكامل المزايا

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");