Skip to content

Instantly share code, notes, and snippets.

@Eugleo
Created February 5, 2020 01:25
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 Eugleo/7219873f3cb5eb45347b31bbf4c70318 to your computer and use it in GitHub Desktop.
Save Eugleo/7219873f3cb5eb45347b31bbf4c70318 to your computer and use it in GitHub Desktop.
public class LoopTest {
public static void main(String[] argv) {
int START = 2000000000;
int count = 0;
for (float f = START; f < START + 50; f++) {
count++;
}
System.out.println(count); // 0. Proč?
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment