rendered paste bodyHomework:
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)