Skip to content

Instantly share code, notes, and snippets.

@ionelh
Last active January 28, 2020 16:43
Show Gist options
  • Save ionelh/7512d5a7fb00bddca6d72ae05d717b40 to your computer and use it in GitHub Desktop.
Save ionelh/7512d5a7fb00bddca6d72ae05d717b40 to your computer and use it in GitHub Desktop.
// min / max value
System.out.println(Integer.MIN_VALUE);
System.out.println(Integer.MAX_VALUE);
// int is a 32-bit signed two's complement integer from -2,147,483,648 (-2^31) to 2,147,483,647(inclusive) (2^31 -1)
int oneMillion = 1000000;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment