Assignment #16 and Still Using Variables

Code

    
                    /// Name: Graham Pollock
                    /// Period: 5
                    /// Program Name: Still Using Variables   
                    /// File Name: StillUsingVariables.java
                    /// Date Finished: 9/16/2015
                
        public class StillUsingVariables
        {
            public static void main( String[] args )
            {
               
                int Year;
                String Name;
                
                Year = 2017;
                Name = "Graham Pollock";
                
                System.out.println( "My name is " + Name + " and I'll graduate in " + Year );
            }
        }
        

    

Picture of the output

Assignment 15