Assignment #18 YourSchedule

Code

    
    /// Name: Lacey Reese 
    /// Period: 5
    /// Program Name: YourScheduele
    /// File Name: YourSchedule.java
    /// Date Finished 9/242015
    
public class YourSchedule
{
    public static void main( String[] arg )
    {
    String First= "AP Psych" , Second= "Forensics" , Third= "Econ" , Fourth= "English 4" , Fifth= "Computer Science" ,         Sixth= "AP Enviornmental Science";
    String  T1= "Heckman" , T2= "Sutherland" , T3= "Bremer" , T4= "Reeves-hampton", T5= "Davis" , T6= "Merken";

    System.out.println( "+____________________________________________+ ");
    System.out.println( "| 1 |       " + First + "  |     " + T1 + " | " );
    System.out.println( "| 2 |       " + Second + " |     " + T2 + " | " );
    System.out.println( "| 3 |       " + Third + "  |     " + T3 + " | " );
    System.out.println( "| 4 |       " + Fourth + " |     " + T4 + " | " );
    System.out.println( "| 5 |       " + Fifth + "  |     " + T5 + " | " );
    System.out.println( "| 6 |       " + Sixth + "  |     " + T6 + " | " );
    System.out.println( "+____________________________________________+" );
    }
}

                           
    

Picture of the output

// yoyo ma Assignment 18