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

What should be written in the blank in the following method declaration?

public static ____ odd(int x) { 
    boolean result = x % 2 == 0; 
    System.out.println(result);
}