// Zorah Fung // CSE 142, January 6, 2017 // This program prints out two diamonds and an X using ASCII characters // // Note: This program would get full external correctness // but is not "internally correct." This program lacks structure // and does not eliminate redundancy. Main is hard to read // and is not a good summary of the program. We want to avoid // non-blank printlns inside main. public class FiguresVersion1 { public static void main(String[] args) { System.out.println(" /\\"); System.out.println(" / \\"); System.out.println("/ \\"); System.out.println("\\ /"); System.out.println(" \\ /"); System.out.println(" \\/"); System.out.println(); System.out.println(" /\\"); System.out.println(" / \\"); System.out.println("/ \\"); System.out.println("\\ /"); System.out.println(" \\ /"); System.out.println(" \\/"); System.out.println(); System.out.println("\\ /"); System.out.println(" \\ /"); System.out.println(" \\/"); System.out.println(" /\\"); System.out.println(" / \\"); System.out.println("/ \\"); } }