// // Example Project 1 // // Author: John Wang // Due: Mon. Sept. 11, 2017 // Instructor: Dr. Wang // Goal: The program will display a big "VW" in the monitor // class OutputVW { public static void main(String[] args) { System.out.println("V V W W "); System.out.println(" V V W W W "); System.out.println(" V V W W W W "); System.out.println(" V V W W W W "); System.out.println(" V W W "); System.out.println(""); } }