Assignemnt #16 - Still Using Variables

Code

    /// Name: Caelan Dorstad
    /// Period: 6
    /// Program Name: Still Using Variables
    /// File Name: StillUsingVariables.java
    /// Date Finished: 10/01/2015
    
    public class StillUsingVariables
    {
        public static void main(String [] args)
        {
            String Name;
            int Year_Of_Grad;
            
            Name= "Caelan Dorstad";
            Year_Of_Grad = 2017;
            
            System.out.println("My name is " + Name +" and I'll graduate in " + Year_Of_Grad);
        }
    }
    

Picture of the output

Assignment 16