Guest User

Untitled

a guest
May 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. public static void printNumbers() {
  2. for(int i = 1; i <= 7; i++) {
  3. for(int j = 1; j <= i; j++) {
  4. System.out.println(i);
  5. }
  6. }
  7. }
Add Comment
Please, Sign In to add comment