All pastes #2105840 Raw Edit

Someone

public text v1 · immutable
#2105840 ·published 2012-01-24 23:17 UTC
rendered paste body
Homework:
Chapter01 Exercise 08 - Page 47.
8. Write, compile, and test a class that displays our initials on the screen.  Compose
each initial with five lines of initials, as in the following example:

/*Program: Initial.java
 * By: Regina Richards
 * For: CIS163AA
 * Date: January 24th, 2012
 * Descript: A program that outputs my initials to the screen in ascii form.
 */
package initial.java;

public class InitialJava 
{

  public static void main(String[] args) 
    { 
       
       System.out.print("R"
               + "R"
               + "R"
               + "R"); 
       System.out.println("RRR                  RRRRRRR");
       System.out.println("RRR    RRR               RRR   RRR");
       System.out.println("RRR      RRR             RRR     RRR");
       System.out.println("RRR    RRR               RRR   RRR");
       System.out.println("RRRRRRR                  RRRRRRR");
       System.out.println("RRR    RRR               RRR    RRR");
       System.out.println("RRR       RRR            RRR      RRR");
       System.out.println("RRR         RRR          RRR        RRR");
                 
            
    }
}

run:
RRRRRRR                  RRRRRRR
RRR    RRR               RRR   RRR
RRR      RRR             RRR     RRR
RRR    RRR               RRR   RRR
RRRRRRR                  RRRRRRR
RRR    RRR               RRR    RRR
RRR       RRR            RRR      RRR
RRR         RRR          RRR        RRR
BUILD SUCCESSFUL (total time: 0 seconds)