Assignment #16 and Still Using Variables

Code

    /// Name: Brendan Baird
    /// Period: 6
    /// Program Name: Still Using Variables
    /// File Name: StillVar.java
    /// Date Finished: 9/17/2015
    
    public class StillVar {

        public static void main( String[] args ){
        
            String name;
            int yearGrad;
            
            name = "Brendan Baird";
            yearGrad = 2016;
            
            System.out.println("My name is " + name + " and I'll graduate in " + yearGrad + ".");
        }
    }
    

Picture of the output

Assignment 16