///Name: Daniel Rhees ///Period: 5 ///Project Name: Still Using Variables ///File Name: StillUsingVariables.java ///Date: 9/30/2015 public class StillUsingVariables { public static void main( String[] args ) { String name; int Year; Name = "Daniel Rhees"; Year = 2017; System.out.println( "My name is " + Name + " and I'll graduate in " + Year + "." ); } }