Guest User

Untitled

a guest
Jan 17th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class TenNumbers
  2. {
  3. public static void main(String args [])
  4. {
  5. int x=2;
  6. while(x <= 20)
  7. {
  8. System.out.print(x+" ");
  9. x++;
  10. x++;
  11. }
  12. System.out.print("\n");
  13. }
  14. }
Add Comment
Please, Sign In to add comment