Assignemnt #16 and Still Using Variables

Code

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

Picture of the output

Assignment 16