// // Assignment 0 (Project 1) // // Author: John Wang // Due: Tue. Sept. 13, 2016 // Instructor: Dr. Wang // Goal: The program will display a big "VW" in the monitor // class OutputVW { public static void main(String[] args) { String str1 = "V V W W "; String str2 = " V V W W W "; System.out.println(str1); System.out.println(str2); 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(""); } }