Assignemnt #16

Code

    /// Name: Ryan Volko
    /// Period: 7  
    /// Program Name: Thirteenth Program
    /// File Name: ThirteenthProg.java
    /// Date Finished: 9/15/2015
    
    
        public class ThirteenthProg
        {
            public static void main( String[] args )
            {
                String myName;
                int myAge;
                
                myName = "Ryan Volko";
                myAge = 2017;
                
                    System.out.println( "My name is " + myName + " and i will graduate in " + myAge );
                    
                }
            }

    

Picture of the output

Assignment 16