What's a flowchart? 

What is Homework Two? 

What is Lab Three? 

What is lexicographic ordering?

public class R53 {
  public static void main(String[] args) {
    int x = 12; // reasonable assumptions 
    if (x > 0) // parens around the test 
      System.out.print(x); // no need of curly braces in some cases

  }
}

What's a dangling else? 

How do you use anonymous blocks? 

public class R51 {
  public static void main(String[] args) {
    
    {
      int n = 1; int k = 2; int r = k; 
      System.out.println( r * (n + k) );
    }
    
    {
      int n = 6; int k = 1; int r = 3; 
      System.out.println( k * (r - n) );
    }
        
  }
}

How do I turn in my homework/lab?