Assignment #16 Still Using Variables

Code

    /// Name: Matthew Lorence
    /// Period: 5
    /// Program Name: Still Using Variables
    /// File Name: StillUsingVariables.java
    /// Date Finished:9/24/15
    
    public class StillUsingVariables
    {
        public static void main( String[] args )
        {
    
            int x;
            String y;
            
            x = 2010;
            y = "Juan Valdez";
            
            System.out.println( "My name is " + y + " and I'll graduate in " + x + "." );
        }
    }
        
    

Picture of the output

Assignment 16