Assignemnt #15 and Using Variables

Code

/// Name: Josh Bautista
/// Period: 6
/// Program Name: Using Variables
/// File Name: UsingVariables.java
/// Date Finished: 9/15/2015

public class UsingVariables
{
    public static void main( String[] args )
    {
        int orange;
        double yellow;
        String red;
        
        orange = 113;
        yellow = 2.71828; 
        red = "Computer Science";
        
        System.out.println( "This is room # " + orange );
        System.out.println( "e is cloes to " + yellow );
        System.out.println( "I am learning a bit about " + red );
    }
} 
    

Picture of the output

Assignment 1