I know that
for
example
is printed by: System.out.print("for" + "\n" + "example")
But what do I do when I want to print 2 blank lines instead of 1?
Like this:
for
example
I tried System.out.print("for" + "\n" + "\n" + "example")
but it still printed 1 blank line