Skip to content

Instantly share code, notes, and snippets.

@LaurentiuGabriel
Created June 20, 2020 19:01
Show Gist options
  • Select an option

  • Save LaurentiuGabriel/d6bfaa297b07c86dc6ca5c9c696d04f6 to your computer and use it in GitHub Desktop.

Select an option

Save LaurentiuGabriel/d6bfaa297b07c86dc6ca5c9c696d04f6 to your computer and use it in GitHub Desktop.
public class Application {
public static void main(String[] args) {
int value = 10;
do{
System.out.println("Value is: " + value);
value += 1;
}
while(value < 20);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment