show/hide this revision's text 2 embellished a little

If you are working in the plane and you want the Euclidean distance "as the crow flies":

// Cities are points x0,y0 and x1,y1 in kilometers or miles or Smoots[1]
dx = x1 - x0;
dy = y1 - y0;
dist = sqrt(dx*dx + dy*y);
// * is faster than pow for squaring

No trigonometry needneeded! Just the Pythagorean theorem and the fact that squares are always positive so you don't need dx = abs(x1 - x0), etc. to get a positive number to pass to sqrt().

Note that you could probably do this in one line and a compiler would probably reduce it the equivalent above code:

dist = sqrt((x1-x0)*(x1-x0) + (y1-y0)*(y1-y0));

[1] http://en.wikipedia.org/wiki/Smoot

show/hide this revision's text 1

If you are working in the plane and you want the Euclidean distance "as the crow flies":

// Cities are points x0,y0 and x1,y1 in kilometers or miles
dx = x1 - x0;
dy = y1 - y0;
dist = sqrt(dx*dx + dy*y);  // * is faster than pow for squaring

No trigonometry need!