Assignment #15

Code

    ///Name: Carlos Sosa
    ///Period: 6
    ///Project Name: UsingVariables
    ///File Name: UsingVariables.java
    ///Date: 10/1/15
    
    public class UsingVariables
    {
        public static void main( String[] args)
        {
        
        int a=113;
        double b=2.71828;
        String c="Computer Science";
        
        System.out.println( "This is room # " + a );
        System.out.println( "e is close to " + b );
        System.out.println( "I am learning a bit about " + c );
        
        }
    }
        
        
    

Picture of the output

Assignment 15