Assignment #16 Still Using Variables

Code

    /// Name: Drew Boxold
    /// Period: 5
    /// Program Name: 16
    /// File Name: StillUsingVariables.java
    /// Date Finished: 9/24/2015
    
     public class StillUsingVariables
    {
        public static void main( String[] args )
        {
            String myName;
            int myYear;

            
            myYear = 2016; 
            myName = "Drew Boxold" ; 

            System.out.println( "My name is " + myName + " and I will graduate in " +  myYear + "." );
        }
     }
     
     
    

Picture of the output

Assignment 16