Discover the answers you need at Westonci.ca, where experts provide clear and concise information on various topics. Explore comprehensive solutions to your questions from a wide range of professionals on our user-friendly platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

Complete the code with four more output statements to output the following figure with e's. End with a newline.
The output is:
e e
eeeee
e e
eeeee
e e
Note: Whitespace (blank spaces/lines) matters; make sure the whitespace matches exactly the expected output.
import java.util.Scanner;
public class OutputFormat {
public static void main(String [] args) {
System.out.println("e e");
}
}