Skip to content

Instantly share code, notes, and snippets.

@Falci
Created March 18, 2014 16:53
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 Falci/9624209 to your computer and use it in GitHub Desktop.
Save Falci/9624209 to your computer and use it in GitHub Desktop.
package integer;
public class MaxInt {
public static void main(String[] args) {
Integer i = Integer.MAX_VALUE - 10;
for(int x=0; x<20; x++){
System.out.println( i++ );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment