Assignment #16 and Thirteenth Program

Code

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

Picture of the output

Assignment 16