1. Lab Five still open until the end of the day today. 

2. Lab Six and Homework Five will be due next week (probably Thu).

3. Today we look at BlueJ. 

http://www.bluej.org/

Install this version: 

http://www.bluej.org/download/files/bluej-315.jar

(This is for "other systems" because we have no special rights in labs.)

import java.util.*; 

public class Mike {
  public static void main(String[] args) {
    Map<String, Double> heights;
    heights = new HashMap<String, Double>();
    System.out.println( heights ); 
    heights.put("noorabom", 1.68);     
    System.out.println( heights ); 
    heights.put("andrvand", 1.71);     
    System.out.println( heights ); 
    heights.put("tscohen", 1.96);     
    System.out.println( heights );
    System.out.println( heights.get("andrvand") ); // andrvand
    if (heights.get("jagraver") == null) { 
      // does jack appear in my table? jagraver
      heights.put("jagraver", 1.86); 
      System.out.println( "username added: " + heights ); 
    } else {
      System.out.println( heights.get("jagraver") ); 
    }
  }
}