Skip to content

Instantly share code, notes, and snippets.

@luckyduck
Created December 19, 2014 09:41
Show Gist options
  • Save luckyduck/b3c74b3d74f663215a7d to your computer and use it in GitHub Desktop.
Save luckyduck/b3c74b3d74f663215a7d to your computer and use it in GitHub Desktop.
Java for()-Schleife / Dekrement
for (int j = farben.length - 1; j >= 0; j-- ) {
System.out.println(farben[j]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment