You shall simulate a room that is 30 feet wide by 20 feet long on the inside of the walls.
The upper and left walls are ALWAYS 70 degrees.
The lower and right walls are ALWAYS 40 degrees.
At (10,10) there is a space heater that is 250 degrees.
At the top wall in the right side is a window 5 feet long that is ALWAYS at -20 degrees
All room temperatures are printed truncated down to an int.  (int)(temp[x][y])



You shall
	Show all the temperatures in the room in color.
	Show all the temperatures in the room in numbers.
	Show the lowest temperature anywhere within the room not counting the walls.
	Show location of the coldest temperature not counting the walls.
	Show the average temperature within the room excluding the walls.


This is out of 5 points.

My color formula is:
	if it's less than 20, then the color is blue.
	if it's more than 90, then it's red.
	otherwise it's new Color(((int)temp[x][y] - 20)*3,0,255-(int)(temp[x][y]-20)*3)