Assignemnt #16 and Still Using Variables

Code

///Name: Joshua Bautista
///Period: 6
///Project Name: Still Using Variables
///File Name: StillUsingVariables.java
///Date: 9/21/2015
    


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

Picture of the output

Assignment 1