// GIANT LETTERS APPLICATION // Frans Coenen // University of Liverpool // 26 February 1999 class GiantJavaApp { // -------------------- METHODS --------------------- /* Main method to write 'JAVA' in giant letters down the screen. */ public static void main(String[] args) { // Create an instance of the class Giantjava GiantJava newGJ = new GiantJava(); // Invoke a sequence of methods. newGJ.giantLetterJ(); newGJ.giantLetterA(); newGJ.giantLetterV(); newGJ.giantLetterA(); } }