الرجوع
تسجيل الدخول
أنت تتصفح نسخة مؤرشفة من الموقع اضغط للانتقال إلى الموقع الجديد بكامل المزايا
What does the following code print when x is set to 187?
if (x < 0)
    System.out.println("x is negative");
else if (x == 0)
    System.out.println("x is zero");
else
    System.out.println("x is positive");