All the winners
You decide to save your favorites Nobel prize winners for Literature and Chemistry as well. Now, though, you are wondering how many favorites you have in the different fields - it's time to measure the length of the arrays!
Diese Übung ist Teil des Kurses
Introduction to Java
Anleitung zur Übung
- Print length of
literatureLaureatesusing the.lengthproperty. - Print length of
chemistryLaureates.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
class AllNobelLaureates {
public static void main(String[] args) {
String[] physicsLaureates = {"Curie", "Einstein", "Fermi"};
String[] literatureLaureates = {"Kipling", "Shaw", "Hemingway", "Seifert"};
String[] chemistryLaureates = {"Curie", "Heyrovsky"};
// Print the lengths of the arrays
System.out.println(physicsLaureates.length + " physics laureates");
System.out.println(literatureLaureates.____ + " literature laureates");
System.out.println(____ + " chemistry laureates");
}
}