Assignment #15 and Twelfth Program

Code

        /// Name: Georgi Atanasov
        /// Period: 5
        /// Program Name: UsingVariables
        /// File Name: UsingVariables.java
        /// Date Finished: 9/25/2015

    public class UsingVariables
    {
        public static void main( String[] args )
        {
            String Georgi;
            int A;
            double Atanasov;
            
            Georgi = "Computer Science";
            A = 113;
            Atanasov = 2.71828;

            System.out.println( "This is room # " + Atanasov + "." );
            System.out.println( "e is close to " + A + "!" );
            System.out.println( "I am learning a bit about " + Georgi + "." );
        }
    }
    

Picture of the output

Assignment 15