// Stuart Reges // 1/14/09 // // This program produces as output an ASCII art representation of a mirror. public class Mirror { public static void main(String[] args) { line(); topHalf(); bottomHalf(); line(); } // outputs a solid line public static void line() { System.out.print("#"); for (int i = 1; i <= 16; i++) { System.out.print("="); } System.out.println("#"); } // outputs the top half of the mirror public static void topHalf() { for (int line = 1; line <= 4; line++) { System.out.print("|"); for (int space = 1; space <= (-2 * line + 8); space++) { System.out.print(" "); } System.out.print("<>"); for (int dot = 1; dot <= 4 * line - 4; dot++) { System.out.print("."); } System.out.print("<>"); for (int space = 1; space <= (-2 * line + 8); space++) { System.out.print(" "); } System.out.println("|"); } } // same as top half only in reverse order public static void bottomHalf() { for (int line = 4; line >= 1; line--) { System.out.print("|"); for (int space = 1; space <= (-2 * line + 8); space++) { System.out.print(" "); } System.out.print("<>"); for (int dot = 1; dot <= 4 * line - 4; dot++) { System.out.print("."); } System.out.print("<>"); for (int space = 1; space <= (-2 * line + 8); space++) { System.out.print(" "); } System.out.println("|"); } } }