Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. String[] arrays = {"A","B","C","D","E","F","G","H","I","J","K","L","M","N"};
  2.  
  3. for(int i = 0; i < 6; i++)
  4. {
  5. for(int j = 0; j <= 6; j++)
  6. {
  7. System.out.print(" " + arrays[j]);
  8. }
  9. System.out.println();
  10. }
  11.  
  12. A B C D E F G
  13. A B C D E F G
  14. A B C D E F G
  15. A B C D E F G
  16. A B C D E F G
  17. A B C D E F G
  18.  
  19. A B C D E F G
  20. H I J K L M N
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement