Assignment 16: Still Using Variables

Code

    /// Name: Ryan McAteer
    /// Period: 5
    /// Program Name: Using Variables
    /// File Name: Assignment16.java
    /// Date Finished: 9/15/15

class Assignment16 
{
      public static void main(String[] args) 
      {
            String myName;
            int graduationYear;
            myName = "Ryan McAteer";
            graduationYear = 2017;
            System.out.println( "Hello, my name is " + myName + " and I will graduate in " + graduationYear + "." );
      }
}
    

Picture of the output

Assignment 16