CS 40 - Lecture 18

Cover page image

Cay S. Horstmann

Lecture 17 Recap

???

Plain Text

Example: Office Automation

???

Example: Office Automation

Reading Plain Text

Loop Through Words

public class MyText2 extends Text
{
  public int countWords()
  {
    int count = 0;
    for (String word : getWords())
    {
      count++;
    }
    return count;
  }
}

Lab 1: Running the Program

Analyzing Plain Text

Counting

Lab 2: Count the "the"s

???

Finding

Lab 3: The Longest Word in Alice

???

Collecting

Lab 4: Short Words in Alice

Ok, but...

mona lisa picture

Reminders

???