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");
}
}