Skip to content

Instantly share code, notes, and snippets.

@folivetti
Created March 5, 2017 17:33
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/41bd21013ac74e59ade9489ed7f12351 to your computer and use it in GitHub Desktop.
Save folivetti/41bd21013ac74e59ade9489ed7f12351 to your computer and use it in GitHub Desktop.
class Main {
public static void main(String[] args) {
int i;
for (i=1; i<=1000; 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