Today is Tuesday, June 24. It's 2:30pm and time to start Lab Two. 

http://www.drjava.org/

import java.math.BigDecimal; 
import java.util.Scanner; 

class LabTwo {
  public static void main(String[] args) {
    double a = 4.35; 
    int b = 100; 
    System.out.println( a * b ); 
    BigDecimal c, d; 
    c = new BigDecimal( "4.35" ); 
    d = new BigDecimal( "100"  );
    System.out.println( c ); 
    System.out.println( d ); 
    BigDecimal answer = c.multiply(d); 
    System.out.println( answer ); 
    Scanner tron; 
    tron = new Scanner( System.in ); 
    System.out.print("Give me an integer: ");
    int x = tron.nextInt();
    System.out.print("You have typed: "); 
    System.out.println( x * 1 );
    
    System.out.print("Give me a double: ");
    double y = tron.nextDouble();
    System.out.print("You have typed: "); 
    System.out.println( y * 1 );
    
  }
}

This works as follows:

Welcome to DrJava.  Working directory is C:\Users\dgerman\Desktop
> run LabTwo
434.99999999999994
4.35
100
435.00
Give me an integer:  [DrJava Input Box]
You have typed: 55
Give me a double:  [DrJava Input Box]
You have typed: 3.141592