Skip to content

Instantly share code, notes, and snippets.

@greensma
Last active October 24, 2016 14:52
Show Gist options
  • Save greensma/1ee27200449fdeaf8d850038dbd65a68 to your computer and use it in GitHub Desktop.
Save greensma/1ee27200449fdeaf8d850038dbd65a68 to your computer and use it in GitHub Desktop.
Home work #2 Смаглюк Иван
public class Ex3 {
public static void main(String[] args) {
for (int i = 10; i >= 0; 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