-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInitials.java
More file actions
20 lines (16 loc) · 906 Bytes
/
Copy pathInitials.java
File metadata and controls
20 lines (16 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Cenit College: Assignment 1.2
Author: Graham Ó Síocháin */
public class Initials {
/*This program prints my initials to screen as asterisks*/
public static void main(String [] args){ //main method
System.out.println("************ ************* ***********"); //output asterisk
System.out.println("* * * *");
System.out.println("* * * *");
System.out.println("* * * *");
System.out.println("* ****** * * ***********");
System.out.println("* * * * *");
System.out.println("* * * * *");
System.out.println("* * * * *");
System.out.println("************ ************* ***********");
} //end main method
} //end class