BaşlayınÜcretsiz Başlayın

Oddity

You have been given the list of different IDs for products meant for either land or sea. You know that land products are given an even number and sea products have odd one. To facilitate your job, you want to know which elements are odd in this list.

Bu egzersiz

Intermediate Java

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • Call your custom method.
  • Give the correct return type for your method.
  • Inside the method, use the modulo operator, %, to check for odd numbers.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

class OddityFinder {
  public static void main(String[] args) {
    int[] intArray = {32, 67, 86, 90, 26, 34, 92, 13, 70, 50};
    
    for (int number : intArray) {
      // Call your custom method
      if (____(number)) System.out.print(number + "\n");
    }
  }

  // Give the correct return type for your method
  public static ____ isOdd(int n) {
    // Use clever math to determine that it is odd
    return (____) != 0;
  }
}
Kodu Düzenle ve Çalıştır