/// Name: Lacey Reese /// Period: 5 /// Program Name: StillUsingVariables /// File Name: StillUsingVariables.java /// Date Finished 9/23/2015 public class StillUsingVariables { public static void main( String[] args ) { String Name; int Grad; Grad = 2016; Name = " Lacey Reese "; System.out.println( "My name is " + Name + " and I'll graduate in " + Grad + "." ); } }Picture of the output
// Getting the hang of thissss