Assignment #16 and Still Using Variables

Code

      /// Name: Lauren Baird
      /// Period: 7
      /// Program Name: Still Using Variables
      /// File Name: StillUsingVariables.java
      /// Date Finished: 9/24/2015
      
      public class StillUsingVariables
      {
          public static void main( String[] args)
          {
              int year;
              String name;
              
              year = 2018;
              name = "Lauren Baird";
              
              System.out.println( "My name is " + name + " and I'll graduate in " + year + "." );
          }
      }
    

Picture of the output

Assignment #16