Assignemnt #16, Still Using Variables

Code

      /// Name: Alex Pinder
      /// Period: 5
      /// Program Name: Still Using Variables
      /// File Name: prog16.java
      /// Date Completed: 9/17/15
      
      public class prog16
      {
          public static void main( String[] args )
          {
              int year;
              String name;
              
              year = 2017;
              name = "Alex Pinder";
              
              System.out.println( "My name is " + name + " and I'll graduate in " + year + "." );
          }
      }
    

Picture of the output

Assignment 16