Skip to content

Instantly share code, notes, and snippets.

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