LoslegenKostenlos loslegen

Maximum

You need to find the longest word of that label list to determine the size of the bubbles on the visual you are going to print.

Diese Übung ist Teil des Kurses

Intermediate Java

Kurs anzeigen

Anleitung zur Übung

  • Give the appropriate type to wordsList.
  • Enter the fitting comparison to select the longer word.
  • Enter the correct method to find the longest word.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

class LongestFinder {
  // Give the appropriate type to wordsList
  static String findLongestIn(____ wordsList) {
    String longest = "";

    for (String word : wordsList) {
      // Enter the fitting comparison to select the longer word
      if (____)
        longest = word;
    }
    return longest;
  }

  public static void main(String[] args) {
    String[] words = {"possible", "first", "null", "avoidance", "mineral", "pretty", "tree", "rather", "innocuous"};
    // Call the correct method to find the longest word
    System.out.println(____(words));
  }
}
Code bearbeiten und ausführen