// Whitaker Brand // TA: Miya Natsuhara // 10/4/2017 // CSE142 // Section AB // // This program prints out a Diamond shape. // It is an example of a first-try at producing the output, // and the subsequent programs improve on it using // forloops and static methods. public class Diamond0 { public static void main(String[] args) { System.out.println(" /\\"); System.out.println(" /..\\"); System.out.println("/....\\"); System.out.println("\\..../"); System.out.println(" \\../"); System.out.println(" \\/"); } }