for(int i = 0; i < 10; i++) { for(int j = 0; j <= i; j++) { System.out.print("8"); } System.out.print("\n"); } In connection with what the program displays on the new line a number with one more additional digit 8? Please explain. I'm confused in this thread.