Skip to content

Instantly share code, notes, and snippets.

@e-tverdokhleb
Last active November 19, 2015 08:20
Show Gist options
  • Save e-tverdokhleb/97e915cb4db4046d9843 to your computer and use it in GitHub Desktop.
Save e-tverdokhleb/97e915cb4db4046d9843 to your computer and use it in GitHub Desktop.
static void start(int number) {
if (number <= 0) {
System.out.println("Start falied");
return;
}
for (int i = number; i >= 0; i--) {
System.out.println(i);
}
System.out.println("Go!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment