Please send questions to st10@humboldt.edu .
/*--------------------------------------------------
created by st10 at Mon Apr 30 10:45:36 PDT 2007
--------------------------------------------------*/
#include <iostream>
#include <cmath>
using namespace std;


/*--------------------------------------------------
 Contract: UGLYlooky : int -> void
 Purpose: print to the screen the value <size>, labeled and
         on its own line.

 Examples: UGLYlooky(3) will cause:
size: 3
          ...to be printed to the screen.
--------------------------------------------------*/
void UGLYlooky (int size)
{
    cout << "size: " << size << endl;
    size = 472;
    cout << "now size is: " << size << endl;
}