OK, so I\'ve written most of a program that will allow me to determine if two circles overlap.
I have no problems whatsoever with my program aside from one issue: t
Math.sqrt returns a double so you'll have to cast it to int as well
distance = (int)Math.sqrt((x1-x2)*(x1-x2) + (y1-y2)*(y1-y2));