Skip to content

Instantly share code, notes, and snippets.

@folivetti
Created March 5, 2017 17:31
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/3fc47c6986b922da7242deef58547a16 to your computer and use it in GitHub Desktop.
Save folivetti/3fc47c6986b922da7242deef58547a16 to your computer and use it in GitHub Desktop.
class Main {
public static void main(String[] args) {
int i;
for (i=3; i<=100; i=i+3) {
System.out.println(i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment