Let\'s say I wanted to print 5 lines. Which is the best method (for performance and readability).
System.out.println(); System.out.println(); System.out.prin
Perhaps better than either:
System.out.printf("%n%n%n%n%n");
That uses the line separator appropriate to your platform, where "\n" doesn't.
"\n"