Program #16

Code

   
    /// Name: Afaf Nabeeha
    /// Period: 7
    /// Program Name: Still Using Variables
    /// File Name: Still.java
    /// Date Finished: 9/23/2015 public class Still
        public class Still
        {
            public static void main( String[] args )
            {
                String myName;
                int myGradYear;
                
                myName = "Afaf Nabeeha";
                myGradYear = 2018;
                
                System.out.println( "My name is " + myName + " and I'll graduate in " + myGradYear + "." );
                
            }
        }
    

Picture of the output

Assignment 16