Skip to content

Instantly share code, notes, and snippets.

@karlbeecken
Created September 6, 2021 11:55
Show Gist options
  • Save karlbeecken/6d05492a825faf75e95e16cb4fae83fe to your computer and use it in GitHub Desktop.
Save karlbeecken/6d05492a825faf75e95e16cb4fae83fe to your computer and use it in GitHub Desktop.
for (int i = 0; i < wunschliste.length; i++) {
Pizza pizza = wunschliste[i];
if (pizza == null) continue;
System.out.print(i + " ");
System.out.print(pizza.getNamen());
System.out.print(", Preis (in Cent): ");
System.out.println(pizza.getPreis());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment