Assignemnt #16 Still Using Variables

Code

    ///Name: Prooz Fereydouni
    ///Period: 7
    ///Project Name: Still Using Variables
    ///File Name: SUV.java
    ///Date: 9/17/2015
    
public class SUV
{ 
    public static void main( String[] args )
    {
        String name;
        int grdyear;
        name = "Pirooz Fereydouni";
        grdyear = 2018;
        System.out.println( "My name " + name + " and I'll graduate in " + grdyear + "." );
    }
}
    

Picture of the output

assignment16