Please send questions to
st10@humboldt.edu .
/*-----
Contract: main: void -> int
Purpose: testing program for the function UGLYlooky
Examples: if the user runs the program test_UGLYlooky, the
following should be written to the screen:
size: 36
size: 21
amt: 36
by: Sharon M. Tuttle
last modified: 4-30-07
-----*/
#include <iostream>
#include "UGLYlooky.h"
using namespace std;
int main()
{
int amt;
amt = 36;
UGLYlooky(amt);
UGLYlooky( (4+3)*3 );
cout << "amt: " << amt << endl;
return EXIT_SUCCESS;
}