Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1.  
  2. public class testPatterns {
  3.  
  4. /**
  5. * @param args
  6. */
  7. public static void main(String[] args) {
  8. // TODO Auto-generated method stub
  9. System.out.println("Test Pattern\"A\"");
  10. for (int a = 1; a <= 5; a++) {
  11. for (int b = 1; b <= 5; b++) {
  12. System.out.print(b);
  13. }
  14. System.out.println();
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement