Skip to content

Instantly share code, notes, and snippets.

@folivetti
Created March 5, 2017 17:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save folivetti/5e9491613e30c973d464230296c02b8d to your computer and use it in GitHub Desktop.
Save folivetti/5e9491613e30c973d464230296c02b8d to your computer and use it in GitHub Desktop.
class Main {
public static void main(String[] args) {
int i;
for (i=100; i>=1; i=i-5) {
System.out.println(i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment