/// Name: Holden Ganch /// Period: 7 /// Program Name: sixteenth Program /// File Name: StillUsingVariables.java /// Date Finished: 9/15/2015 public class StillUsingVariables { public static void main( String[] args ) { int x; String firstName; x = 2015; firstName = "Holden"; System.out.println( "My name is " + firstName + " and I'll graduate in " + x ); } }