Assignment #16

Code

///Name: Conner Wygaerts
///Period: 6
///Project Name: StillUsingVariables
///File Name: StillUsingVariables
///Date Finished: 9/22/15

public class StillUsingVariables
{
    public static void main( String[] args )
    {
        String name;
        int year;
        
        
        name = "Conner Wygaerts";
        year = 2017;
        System.out.println( "My name is " + name + " I will graduate in " + year + "." );
        }
}
       

Picture of the output

YourInitials.html