Assignment #16 and Still Using Variables

Code

///Name: Trent Lane
///Period: 6
///Program Name: UsingVariables
///Date Finished: 9/17/15

public class StillUsingVariables
{
    public static void main( String[] args )
    {
        String myName;
        int myYear;
        
        myName = "Juan Valdez";
        myYear = 2010;
        
        System.out.println( "My name is " + myName + " and I'll graduate in " + myYear + ".");
    }
}
 

Picture of the output

Assignment 16