AveList01.java - The CS132-01 version of AveList. Read and compute the average of a list of integers (0:100) until a sentinel value (-1) is entered. (Algorithm in Pseudo Code)
AveList02.java - The CS132-02 version of AveList. Read and compute the average of a list of integers (0:100) until a sentinel value (-1) is entered. (Algorithm in Pseudo Code)
MineSweeper1.java - The beginnings of the mine sweeper game. So far it only contains code the method placeMines(...) and a way to test it. We'll use it to illustrate how to develop and test your programs incrementally.
MineSweeper2.java - The MineSweeper game with the addition of a printBoard method that prints out the user's view of the board.
CoinTest.java - A test class that uses several Coin objects to test and demonstrate them.
AveChildren.java - A coin flipping experiment to determine the average number of children a family will have if they want at least one boy and one girl child.