Imagine that you need to solve exercise P1.7 from page 25. 

What do you do? Read everything up to page 25. Then... ?

--

Once upon a time there was a man that had 17 camels. 

He also had three sons and when he died he left the camels to them.

He said that the eldest should 1/2 and the middle one 1/3 and the youngest 1/9. 

The sons didn't know what to do until one day a man came down the road on his camel. 

Sons looked sad man asks why sons explain man thinks a bit lets his camel join the sons'.

Then he said: now let's divide. Eldest took: 9, middle 6 and the youngest 2.

The man took his camel and left. Everybody happy. 

--

public class Face {
  public static void main(String[] args) {
    System.out.println("boy this is hard."); 
    System.out.println("boy this is hard."); 
    System.out.println("boy this is hard."); 
    System.out.println("boy this is hard."); 
    System.out.println("boy this is hard."); 
  }
}

public class Face {
  public static void main(String[] args) {
    System.out.print("boy this is hard."); 
    System.out.print("boy this is hard."); 
    System.out.print("boy this is hard."); 
    System.out.print("boy this is hard."); 
    System.out.print("boy this is hard."); 
  }
}

// -------------------------------------
// My partner was Seth. 
// He deserves credit for half of this.
// Adrian German
// -------------------------------------
public class Face {
  public static void main(String[] args) {
    System.out.println(" //////////////"); 
    System.out.println("+--------------+"); 
    System.out.println("|   o     o    |"); 
    System.out.println("|      <       |"); 
    System.out.println("|     ---      |"); 
    System.out.println("+--------------+"); 
  }
}

This is how it works. 

Welcome to DrJava.  Working directory is C:\Users\dgerman\Desktop
> run Face
 //////////////
+--------------+
|   o     o    |
|      <       |
|     ---      |
+--------------+
>

Read for tomorrow chapter 2. 

Focus on 2.5.4 if you have trouble with Lab Assignment One. 

--