Assignemnt #16 and Still Using Variables

Code

/// Name: Raff Lisbona
/// Period: 6
/// Program Name: Still Using Variables
/// File Name: StillUsingVariables.java
/// Date Finished: 9/22/2015

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

Picture of the output

Assignment 16