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

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