/// Name: Drew Boxold /// Period: 5 /// Program Name: 16 /// File Name: StillUsingVariables.java /// Date Finished: 9/24/2015 public class StillUsingVariables { public static void main( String[] args ) { String myName; int myYear; myYear = 2016; myName = "Drew Boxold" ; System.out.println( "My name is " + myName + " and I will graduate in " + myYear + "." ); } }