Skip to content

Instantly share code, notes, and snippets.

@dariogabriel113
Last active June 30, 2018 04:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dariogabriel113/c83c835fa60ab2a8a8aaf6e699091635 to your computer and use it in GitHub Desktop.
Save dariogabriel113/c83c835fa60ab2a8a8aaf6e699091635 to your computer and use it in GitHub Desktop.
public class TestWhile {
public static void main(String[] args) {
int count = 0;
while (count <= 10) {
System.out.println(count);
count++;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment