Assignment 16; StillUsingVariables

Code

    // Name: Donovan Rich
    // Period: 6
    // Name of Program: Still Using Variables
    // Name of File: StillUsingVariables.java
    // Date Completed: 9/21/2015
    
    public class StillUsingVariables {
    
        public static void main( String[] args ) {
        
        String name;
        int year;
        
        name = "John Cena";
        year = 2016;
        System.out.println( "My name is " + name + " and Donovan Rich will graduate in " + year + "." );
        
        }
    }
        

Picture of the output

Assignment 16