Assignemnt #15 Using Variables

Code

    ///Name: Prooz Fereydouni
    ///Period: 7
    ///Project Name: Using Variables
    ///File Name: UV.java
    ///Date: 9/17/2015
    
public class UV
{
    public static void main( String[] args)
    {
        String date;
        int school;
        double pi;
        date = "9/17/2015";
        pi = 3.14;
        school = 18;
        System.out.println( "The day I wrote this program the date was " + date + "." );
        System.out.println( "pi is close to " + pi + "." );
        System.out.println( "The day I wrote this program, it was the " + school + "th day of school." );
    }
}
    

Picture of the output

assignment15