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
The second option is the better method.
It is not only easier for the programmer but results in less function overhead.