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

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

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