Assignemnt #16 and Still Using Variables

Code

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

Picture of the output

ALettertoYourself