Assignemnt #16: Still Using Variables

Code

    /// Name: Kelsey Lieberman
    /// Period 5
    /// Program Name StillUsingVariables
    /// File Name StillUsingVariables.java
    /// Date Finished: 9/22/2015
    
public class StillUsingVariables
{
    public static void main( String[] args )
    {
        String straightG;
        int dankyear;
        
        straightG = "Kelsey Marin Lieberman";
        dankyear = 2016;
        
        System.out.println( "My name is " + straightG + " and I am graduating high school in " + dankyear + ".");
    }
}

    

Picture of the output

Assignment 16