Assignemnt #16 Still Using Variables

Code

    /// Name: DeeJay Cerezo
/// Period: 7
/// Program Name: Still Using Variables
/// File Name: StillUsingVariables.java
/// Date Finished: 9/23/2015

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

Picture of the output

Assignment 16