Assignemnt #16 Still Using Variables

Code

   
    /// Name: Jake Johnson
    /// Period: 7
    /// Program Name: Still Using Variables
    /// File Name: StillUsingVariables.java
    /// Date Finished: 9/15/2015
    
  public class StillUsingVariables
{
    public static void main ( String[] args)
        {
        String name;
        int GradYear;
        
        name = "Jake Johnson";
        GradYear = 2017;
        
        System.out.println("My name is " + name + " and I will graduate in " + GradYear + ".");
        }
}
    

Picture of the output

This should work