Assignemnt #15, Using Variables

Code

      /// Name: Alex Pinder
      /// Period: 5
      /// Program Name: Using Variables
      /// File Name: prog15.java
      /// Date Completed: 9/16/15
      
      public class prog15
      {
          public static void main( String[] args )
          {
              int one;
              double two;
              String three;
              
              one = 113;
              two = 2.71828;
              three = "Computer Science";
              
              System.out.println( "This is room # " + one );
              System.out.println( "e is close to " + two );
              System.out.println( "I am Learning ablout " + three );
          }
      }
    

Picture of the output

Assignment 15