Assignemnt #15

Code

    /// Name: Ryan Volko
    /// Period: 7  
    /// Program Name: Twelfth Program
    /// File Name: TwelfthProg.java
    /// Date Finished: 9/15/2015
    
    
        public class TwelfthProg
        {
            public static void main( String[] args )
            {
                String myName, College, mySport, myPosition;
                int myAge;
                
                myName = "Ryan 'Cheech' Volko";
                College = "Oregon University";
                mySport = "Baseball";
                myPosition = "Second Base";
                
                myAge = 2017;
                
                    System.out.println( "My name is " + myName );
                    System.out.println( "My sport is " + mySport );
                    System.out.println( "My position is " + myPosition );
                    System.out.println( "My college of choice is " + College );
                    System.out.println( "I will graduate in " + myAge );
                    
                }
            }
 
    

Picture of the output

Assignment 15