Skip to content

Instantly share code, notes, and snippets.

@zephiransas
Created February 19, 2013 12:30
Show Gist options
  • Save zephiransas/4985441 to your computer and use it in GitHub Desktop.
Save zephiransas/4985441 to your computer and use it in GitHub Desktop.
public static void test1() {
int sum = 0;
for(int i = 1;i < 1000;i++) {
if(i % 3 == 0 || i % 5 == 0) sum+= i;
}
System.out.println(sum);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment