Assignment #8, Your Initials

Code

    ///Name: Stella Koliavas
    ///Period: 5
    ///Project Name: Your Initials
    ///File Name: YourInitials.java
    ///Date: 9/10/2015
    
    public class YourInitials
    {
    	public static void main( String[] args )
	      {
		      System.out.println("  SSS   N   N  K   K ");
        System.out.println(" S   S  NN  N  K  K  ");
        System.out.println(" S      N N N  K K   ");
        System.out.println("  SSS   N  NN  KK    ");
        System.out.println("     S  N   N  K K   ");
        System.out.println(" S   S  N   N  K  K  ");
        System.out.println("  SSS   N   N  K   K ");
        }
    }
    

Picture of the output

Assignment 8