Skip to content

Instantly share code, notes, and snippets.

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