Assignemnt #16 and Still Using Variables

Code

  /// Name: Marco Correa
  /// Period: 5
  /// Program Name: Still Using Variables
  /// File Name: StillUsingVariables.java
  /// Date Finished: 9/17/2015

  public class StillUsingVariables
  {
	  public static void main( String[] args )
	  {
		  String full_name = "Marco Correa";
		  int year = 2017;
		
		  System.out.println( "My name is " + full_name + " and I'll graduate in " + year + "." );
	  }
  }
    

Picture of the output

Assignment 16