Skip to content

Instantly share code, notes, and snippets.

@greensma
Last active October 24, 2016 14:54
Show Gist options
  • Save greensma/fe7dbceabcb09e04f94f76a191266a38 to your computer and use it in GitHub Desktop.
Save greensma/fe7dbceabcb09e04f94f76a191266a38 to your computer and use it in GitHub Desktop.
Home work #2 Смаглюк Иван
public class Ex5 {
public static void main(String[] args) {
for (int i = 1; i <=15; i++) {
if (i % 3 == 0)
System.out.print(i + " ");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment