Program #10

Code

   
    /// Name: Afaf Nabeeha
    /// Period: 7
    /// Program Name: Escape Sequences and More Comments
    /// File Name: EscSequences.java
    /// Date Finished: 9/14/2015 public class EscSequences
      
      

      public class EscSequences
      {
          public static void main ( String[] args )
          {
              //Initial version created using FIGlet, font "Big Money", orinted southwest
              
              System.out.print( "\t    _____\n\t   /     |\n\t   JJJJJ |" );
              System.out.println( "  ______   __     __  ______" );
              System.out.println( "\t      JJ | /      \\ /  \\   /  |/      \\" );
              System.out.println( "\t __   JJ | aaaaaa  |\"\"  \\ /\"\"/ aaaaaa  |" );
              System.out.println( "\t/  |  JJ | /    aa | \"\"  /\"\"/  /    aa |" );
              System.out.println( "\tJJ \\__JJ |/aaaaaaa |  \"\" \"\"/  /aaaaaaa |" );
              System.out.println( "\tJJ    JJ/ aa    aa |   \"\"\"/   aa    aa |" );
              System.out.println( "\t JJJJJJ/   aaaaaaa/     \"/     aaaaaaa/" );
           }
      }
    

Picture of the output

Assignment 10