Guest User

Untitled

a guest
May 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. class DoWhileLoop {
  2. public static void main (String[] args) {
  3. int x = 10;
  4.  
  5. do {
  6. System.out.println(x);
  7. x--;
  8. } while (x >= 1);
  9. }
  10. }
Add Comment
Please, Sign In to add comment