Assignemnt #8 and Your Initials

Code

    /// Name: Kyle Ivy
    /// Period: 5
    /// Program Name: YourInitials
    /// File Name: YourInitials.java
    /// Date Finished: 9/9/2015
    
    
        public class YourInitials
            
        {
            
        	public static void main( String[] args )
            
            //I need to learn what these do
                
        	{
        		
        		System.out.println( "   K          K     I" );
            System.out.println( "   K        K       I" );
            System.out.println( "   K      K         I" );
            System.out.println( "   K    K           I" );
            System.out.println( "   K  K             I" );
            System.out.println( "   KK               I" );
            System.out.println( "   K  K             I" );
            System.out.println( "   K    K           I" );
            System.out.println( "   K      K         I" );
            System.out.println( "   K        K       I" );
            System.out.println( "   K          K     I" );
            
            //I was too lazy to make the B for my middle name
    	
    	}
    }
    

prog8.PNG

Assignment 1