Modify the following program so it prints two blank lines between each line of text. public class

Question:

Modify the following program so it prints two blank lines between each line of text. 

public class
{
 public static void main(String[] args)
 {
 System.out.print("Hearing in the distance");
 System.out.print("Two mandolins like creatures in the");
 System.out.print("dark");
 System.out.print("Creating the agony of ecstasy.");
 System.out.println(" - George Barker");
 }
}

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: