atm you compare every pair of circles double
instead use i+1 as start value
for (int k=i+1; k < circulos.length; k++) { //
This:
is not necessary then
atm you compare every pair of circles double
instead use i+1 as start value
for (int k=i+1; k < circulos.length; k++) { //
This:
is not necessary then