Created
June 20, 2020 19:01
-
-
Save LaurentiuGabriel/d6bfaa297b07c86dc6ca5c9c696d04f6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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