



  CSE 109 HW 2 Due 9 PM Tuesday 20 January 2009

  This is an exercise in writing, editing, compiling, and running a simple
  C++ program.

  Start this assignment by creating the subdirectory hw2 in your subdirectory
  csc109.091.  Then copy the file /proj/csc109/hw2/Makefile to your directory
  cse109.091/hw2, giving it the same name, Makefile.  I will explain the
  purpose of the file Makefile in a few lectures. In your directory
  cse109/hw2 create the file hw2.cc, a C++ program that reads ints from the
  console, sorts them in ascending order, and displays the sorted list on the
  screen.  The program should read the ints so long as cin.good() is true.
  Use any sort you wish, but document the sort that you do use.

  This homework, like all homeworks and unlike "programming assignments,"
  will only be collected once.

