Assignemnt #15 and Using Variables

Code

    
    ///Name: Daniel Rhees
    ///Period: 5
    ///Project Name: Using Variables
    ///File Name: UsingVariables.java
    ///Date: 9/29/2015
  
    public class UsingVariables
    {
        public static void main( String[] args )
        {
            int x;
            double e;
            String com, sci;
            
            x = 113
            
            e = 2.71828;
            
            compsci = "Computer Science";
            
            System.out.println( "This is room # " + x );
            System.out.println( "E is close to " + e );
            System.out.println( "I am learning a bit about " + compsci );
        }
    }
    

Picture of the output

Assignment 15