Guest User

Untitled

a guest
Feb 19th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class Tree {
  2.  
  3. public static void main(String args[]) {
  4.  
  5. int value = 0;
  6.  
  7. do {
  8. value = 1;
  9. System.out.println("Value: " + value);
  10.  
  11. } while (value == 1);
  12.  
  13. }
  14. }
Add Comment
Please, Sign In to add comment